From 5353df318fd98f5cdfb9d83b6c638460853d1688 Mon Sep 17 00:00:00 2001 From: Patrick Date: Thu, 5 Jun 2025 14:34:25 +0200 Subject: [PATCH] updated types --- src/lib/db_types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/db_types.ts b/src/lib/db_types.ts index 24997ce..3b1f9bf 100644 --- a/src/lib/db_types.ts +++ b/src/lib/db_types.ts @@ -3,7 +3,8 @@ export interface UserEntry { gender: string; name: string; address: string; - initials: string; + username: string; + password: string; created: string; }