fix: actually write image

This commit is contained in:
Max Richter
2025-11-04 16:04:51 +01:00
parent bed7d1a11b
commit 7664abe089
3 changed files with 5 additions and 4 deletions

View File

@@ -41,7 +41,6 @@ export async function getLogs() {
date: new Date(date),
} as Log;
});
console.log(logs);
// Return the logs sorted by date
return logs.sort((a, b) => a.date.getTime() - b.date.getTime());