diff --git a/packages/nextjs/app/myProfile/_components/MyProfile.tsx b/packages/nextjs/app/myProfile/_components/MyProfile.tsx index 7e2f104..fd2af5d 100644 --- a/packages/nextjs/app/myProfile/_components/MyProfile.tsx +++ b/packages/nextjs/app/myProfile/_components/MyProfile.tsx @@ -83,6 +83,20 @@ export const MyProfile: NextPage = () => { return (
+
+ {!isConnected || isConnecting ? ( + + ) : ( +
+ + +
+ )} +
{/* User Profile Section */}
{/* Edit Profile Button */} @@ -138,23 +152,9 @@ export const MyProfile: NextPage = () => {
{/* Content Based on Active Tab */} -
+
{activeTab === "your-nfts" && ( <> -
- {!isConnected || isConnecting ? ( - - ) : ( -
- - -
- )} -
)}