From b9fcccc51c103c20a8fe3d694bc08644670225ba Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Fri, 27 Mar 2026 21:43:44 +0000 Subject: [PATCH 1/2] [#306] Show connected wallet address alongside Farcaster profile When a Farcaster identity is connected, show the truncated wallet address as secondary muted text next to the @username. Hidden on mobile (sm:inline) to keep the nav compact. Address updates automatically when wallets switch via wagmi's useAccount hook. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/components/ConnectWallet.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/ConnectWallet.tsx b/src/components/ConnectWallet.tsx index cacf5cd6..b94657e4 100644 --- a/src/components/ConnectWallet.tsx +++ b/src/components/ConnectWallet.tsx @@ -55,6 +55,11 @@ export function ConnectWallet() { )} {profile ? `@${profile.username}` : truncateAddress(address)} + {profile && ( + + {truncateAddress(address)} + + )}