Skip to content

Commit

Permalink
fixed height issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chuma-beep authored Dec 15, 2024
1 parent cb45c0c commit e53c05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/protected/account/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ export default function Profile() {
<div className="bg-transparent shadow rounded-md">
<div className="flex flex-col items-center space-y-6 mt-8">
<div className="relative">
<div className="w-48 h-48 rounded-full">
<div className="w-48 h-48 rounded-full overflow-hidden">
<Image
src={avatarUrl || '/placeholder-user.jpg'}
alt="Profile Avatar"
width={192}
height={192}
height={400}
className="object-cover"
/>
</div>
Expand Down

0 comments on commit e53c05d

Please sign in to comment.