diff --git a/src/components/ConnectWallet.tsx b/src/components/ConnectWallet.tsx index 55a47235..431079fa 100644 --- a/src/components/ConnectWallet.tsx +++ b/src/components/ConnectWallet.tsx @@ -65,9 +65,7 @@ export function ConnectWallet({ onNavigate, compact }: ConnectWalletProps = {}) className="rounded-full" /> )} - {profile - ? `@${profile.username.length > 10 ? profile.username.slice(0, 10) + "…" : profile.username}` - : displayAddr} + {displayAddr} ); } @@ -89,7 +87,7 @@ export function ConnectWallet({ onNavigate, compact }: ConnectWalletProps = {}) className="rounded-full" /> )} - {profile ? `@${profile.username}` : displayAddr} + {displayAddr} ); }