From c4c463a8d2703c54440aa46928959fcfcb923483 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Wed, 18 Dec 2024 22:55:31 +0900 Subject: [PATCH] removed duplicate container div --- src/wallet/components/Wallet.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/wallet/components/Wallet.tsx b/src/wallet/components/Wallet.tsx index 0095740b96..51d0bc2865 100644 --- a/src/wallet/components/Wallet.tsx +++ b/src/wallet/components/Wallet.tsx @@ -32,10 +32,8 @@ function WalletContent({ children, className }: WalletReact) { ref={walletContainerRef} className={cn('relative w-fit shrink-0', componentTheme, className)} > -
- {connect} - {isOpen && dropdown} -
+ {connect} + {isOpen && dropdown} ); }