Fix Profile interface to match actual profile fields
cgen-a9e7285b8abb4ad2ae0ab4bc6e0edd85
This commit is contained in:
parent
b605fe2d19
commit
e0d36388d0
1 changed files with 4 additions and 4 deletions
|
|
@ -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 || '',
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue