Skip to content

Commit

Permalink
Trying to fix mobile bug
Browse files Browse the repository at this point in the history
  • Loading branch information
luloxi committed Dec 14, 2024
1 parent 6210d28 commit 01b1976
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/nextjs/app/profile/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,20 +164,20 @@ const ProfilePage: NextPage = () => {
{/* User Profile Section */}
<div className="relative flex flex-col md:flex-row justify-between items-center bg-base-100 p-6 rounded-lg shadow-md w-full m-2">
{/* Profile Picture */}
<div className="avatar ">
{/* <ProfilePictureUpload
{/* <div className="avatar "> */}
{/* <ProfilePictureUpload
isEditing={isEditing}
profilePicture={profilePicture}
setProfilePicture={setProfilePicture}
/> */}
<Image
src={punkProfile?.[2] ? punkProfile?.[2] : defaultProfilePicture}
alt="Profile Picture"
className="rounded-full object-cover w-32 h-32"
width={128}
height={128}
/>
</div>
<Image
src={punkProfile?.[2] ? punkProfile?.[2] : defaultProfilePicture}
alt="Profile Picture"
className="rounded-full object-cover w-32 h-32"
width={128}
height={128}
/>
{/* </div> */}
{/* User Info Section */}
<div className="flex flex-col justify-center items-center">
{(isEditing || isAnimating) && (
Expand Down

0 comments on commit 01b1976

Please sign in to comment.