Skip to content

Commit

Permalink
fix(ProfilePage): Data now showing.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZL-Asica committed Oct 11, 2024
1 parent 4b06f20 commit f3faa83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ProfilePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ export default function ProfilePage() {
<InfoSection title="Contact Info">
<ContentBox icon={Email} title="Email" content={profileData?.email} />
<CustomDivider />
<ContentBox icon={Phone} title="Phone" content={profileData?.phone} />
<ContentBox icon={Phone} title="Phone" content={profileData?.phoneNumber} />
</InfoSection>

{/* Bio Section */}
<InfoSection title="Bio">
<Typography variant="body2" color="textSecondary">
{profileData?.bio}
{profileData?.description}
</Typography>
</InfoSection>

Expand Down

0 comments on commit f3faa83

Please sign in to comment.