From 237f8ae6c29bbf485c312b2fed4d5ab4f99a4eff Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Sat, 20 Dec 2025 14:09:20 +0100 Subject: Map and loading robots --- backend/src/types/user.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'backend/src/types/user.ts') diff --git a/backend/src/types/user.ts b/backend/src/types/user.ts index 875072c..b2c7ffc 100644 --- a/backend/src/types/user.ts +++ b/backend/src/types/user.ts @@ -1,18 +1,18 @@ export type AdminCreationResult = { id: string; email: string; - created_at: Date; + created_at: string; }; export type AuthorizedUser = { id: string; email: string; - createdAt: Date; + createdAt: string; }; export type DatabaseUser = { id: string; email: string; password_hash: string; - created_at: Date; + created_at: string; }; -- cgit v1.2.3