From 6a6ed879aaf6c1874066c361331d57e82807edda Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 21:14:01 +0000 Subject: [PATCH] Update upsert default user_type cgen-26990928e9354d67a41f4e53e3ddaecc --- 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 bae4d1dc..986348ec 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -348,7 +348,7 @@ export const aethexUserService = { const { data: upserted, error: upsertError } = await supabase .from("user_profiles") .upsert( - { id: userId, user_type: "community_member", ...updates } as any, + { id: userId, user_type: "game_developer", ...updates } as any, { onConflict: "id" }, ) .select()