From e27f91ee13d7aa367310049514e488142624a852 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 30 Sep 2025 21:27:32 +0000 Subject: [PATCH] Sync realm state with profile cgen-ae3e29567e2e43b0864b827eacbd4d4f --- client/pages/Dashboard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index bdff605b..7a082142 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -218,6 +218,8 @@ export default function Dashboard() { setLinkedin(profile?.linkedin_url || ""); setGithub(profile?.github_url || ""); setTwitter(profile?.twitter_url || ""); + setUserRealm(((profile as any)?.user_type as RealmKey) ?? null); + setExperienceLevel((profile as any)?.experience_level || "beginner"); if (profile) computeProfileCompletion(profile); }, [profile]);