Skip to content

Commit

Permalink
CHE-30 Adjusted code on Profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
brok3turtl3 committed Mar 28, 2024
1 parent cbc0032 commit c307153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/Profile/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Profile = (): JSX.Element => {
<div className="min-h-screen bg-gray-100 flex flex-col items-center justify-center">
<h1 className="text-4xl font-extrabold mb-4">Profile</h1>
<h2 className="text-4xl font-extrabold mb-4">{user?._id}</h2>
<h2 className="text-4xl font-extrabold mb-4">{userProfile?.bio}</h2>
<h2 className="text-4xl font-extrabold mb-4">{userProfile?.fullName}</h2>
</div>
);
};
Expand Down

0 comments on commit c307153

Please sign in to comment.