From 11e0e463e3b1c9ac946132e20ea0c907f8c31d21 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 4 Oct 2025 21:14:17 +0000 Subject: [PATCH] Update realm fallback to game_developer cgen-7ed817fa8e0a4759b9959ca9a444f535 --- client/components/passport/PassportSummary.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/passport/PassportSummary.tsx b/client/components/passport/PassportSummary.tsx index 6fb58869..9ff9f952 100644 --- a/client/components/passport/PassportSummary.tsx +++ b/client/components/passport/PassportSummary.tsx @@ -76,7 +76,7 @@ const PassportSummary = ({ isSelf, linkedProviders, }: PassportSummaryProps) => { - const realm = realmMeta[(profile as any)?.user_type || "community_member"]; + const realm = realmMeta[(profile as any)?.user_type || "game_developer"]; const level = profile.level ?? 1; const totalXp = profile.total_xp ?? 0; const loyaltyPoints = (profile as any)?.loyalty_points ?? 0;