From 0af71790a3b84788d674820fc0084440be67ae7a Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 22:50:58 +0000 Subject: [PATCH] completionId: cgen-891bc8597d5f41d4b8ae8d9fbd70c9aa cgen-891bc8597d5f41d4b8ae8d9fbd70c9aa --- client/lib/aethex-database-adapter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/lib/aethex-database-adapter.ts b/client/lib/aethex-database-adapter.ts index 300685b9..eabc5f6d 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -53,7 +53,7 @@ const normalizeProfile = ( ...(row as AethexUserProfile), email: email ?? (row as any)?.email, username: (row as any)?.username ?? email?.split("@")[0] ?? "user", - onboarded: true, + onboarded: (row as any)?.onboarded ?? false, role: (row as any)?.role ?? "developer", loyalty_points: (row as any)?.loyalty_points ?? 0, current_streak: (row as any)?.current_streak ?? 0,