feat: api v1 routes for calendar lists and notes

This commit is contained in:
ginnoir
2026-07-04 19:03:08 -05:00
parent ea5d1d050c
commit d4304b005c
25 changed files with 1141 additions and 236 deletions
+1 -6
View File
@@ -31,12 +31,7 @@ export function NoteEditor({ note }: { note?: NoteDto }) {
body,
remindAt: remindAt ? new Date(remindAt) : null,
});
setCurrentNote({
...updated,
createdAt: updated.createdAt.toISOString(),
updatedAt: updated.updatedAt.toISOString(),
remindAt: updated.remindAt?.toISOString() ?? null,
});
setCurrentNote(updated);
return;
}