From e0d36388d0fe0ead0b8b5839c6efc1e0f5d94332 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 16 Aug 2025 04:12:32 +0000 Subject: [PATCH] Fix Profile interface to match actual profile fields cgen-a9e7285b8abb4ad2ae0ab4bc6e0edd85 --- client/pages/Profile.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/pages/Profile.tsx b/client/pages/Profile.tsx index 74cbf6f6..dbc7e070 100644 --- a/client/pages/Profile.tsx +++ b/client/pages/Profile.tsx @@ -170,11 +170,11 @@ export default function Profile() { setProfileData({ displayName: profile.full_name || '', bio: profile.bio || '', - company: profile.company || '', + company: (profile as any).company || '', location: profile.location || '', - website: profile.website || '', - githubUsername: profile.github_username || '', - twitterUsername: profile.twitter_username || '', + website: (profile as any).website || '', + githubUsername: (profile as any).github_username || '', + twitterUsername: (profile as any).twitter_username || '', linkedinUrl: profile.linkedin_url || '', }); }