Fix Profile interface to match actual profile fields

cgen-a9e7285b8abb4ad2ae0ab4bc6e0edd85
This commit is contained in:
Builder.io 2025-08-16 04:12:32 +00:00
parent b605fe2d19
commit e0d36388d0

View file

@ -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 || '',
});
}