From 5b0125d725b1f5f156cda992f878484fef1e6ac3 Mon Sep 17 00:00:00 2001 From: Lulox Date: Thu, 19 Sep 2024 22:00:21 -0300 Subject: [PATCH] Small change to myProfile --- .../app/myProfile/_components/MyProfile.tsx | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) 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 ? ( - - ) : ( -
- - -
- )} -
)}