사소한 리팩토링

This commit is contained in:
static
2025-07-08 02:07:54 +09:00
parent 5d9042d149
commit 9b1e27c20b
5 changed files with 46 additions and 65 deletions

View File

@@ -106,5 +106,5 @@ export const getMissingFileThumbnails = async (userId: number, limit: number = 1
)
.limit(limit)
.execute();
return files.map((file) => file.id);
return files.map(({ id }) => id);
};