format
This commit is contained in:
@@ -9,7 +9,9 @@ const database =
|
||||
// - We use globalThis so that the database isn't reset upon HMR.
|
||||
// - The database is reset when restarting the server, use a proper database (SQLite/PostgreSQL/...) if you want persistent data.
|
||||
// biome-ignore lint:
|
||||
((globalThis as unknown as { __database: { todos: TodoItem[] } }).__database ??= { todos: todosDefault });
|
||||
((
|
||||
globalThis as unknown as { __database: { todos: TodoItem[] } }
|
||||
).__database ??= { todos: todosDefault });
|
||||
|
||||
const { todos } = database;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user