From 8ccd4695031bdcedd46956768e82cd9a8dd9ae16 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 21:13:41 +0000 Subject: [PATCH] Default new profiles to game_developer cgen-c3c7d959abf14750b299d5a8043ef83f --- 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 b1a943d3..d1c27b8f 100644 --- a/client/lib/aethex-database-adapter.ts +++ b/client/lib/aethex-database-adapter.ts @@ -388,7 +388,7 @@ export const aethexUserService = { profileData.username || (email ? email.split("@")[0] : undefined) || `user_${Date.now()}`, - user_type: (profileData as any).user_type || "community_member", + user_type: (profileData as any).user_type || "game_developer", experience_level: (profileData as any).experience_level || "beginner", full_name: profileData.full_name, bio: profileData.bio,