From 8da9c0b1240065498b18229b596b997c70ee9d04 Mon Sep 17 00:00:00 2001 From: Alexey Elizarov Date: Fri, 1 Mar 2024 01:52:57 +0300 Subject: [PATCH 1/2] fix: className don't overrides after bump nextjs to 14 --- packages/ui/react-ui/src/BaseWalletConnectionButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/react-ui/src/BaseWalletConnectionButton.tsx b/packages/ui/react-ui/src/BaseWalletConnectionButton.tsx index 63350723a..ccf600ef1 100644 --- a/packages/ui/react-ui/src/BaseWalletConnectionButton.tsx +++ b/packages/ui/react-ui/src/BaseWalletConnectionButton.tsx @@ -8,11 +8,11 @@ type Props = React.ComponentProps & { walletName?: WalletName; }; -export function BaseWalletConnectionButton({ walletIcon, walletName, ...props }: Props) { +export function BaseWalletConnectionButton({ walletIcon, walletName, className, ...props }: Props) { return (