Reverse outdated photos order

This commit is contained in:
Sam Becker 2025-03-07 21:36:28 -06:00
parent 0070e0d03e
commit 4cff086fde

View File

@ -506,7 +506,7 @@ export const getOutdatedPhotos = () => safelyQueryPhotos(
() => query(`
SELECT * FROM photos
${outdatedWhereClause}
ORDER BY created_at ASC
ORDER BY created_at DESC
LIMIT 1000
`,
outdatedValues,