diff --git a/src/wallet/components/WalletAdvanced.tsx b/src/wallet/components/WalletAdvanced.tsx index d5a0fac562..826cd2e6c0 100644 --- a/src/wallet/components/WalletAdvanced.tsx +++ b/src/wallet/components/WalletAdvanced.tsx @@ -1,3 +1,5 @@ +'use client'; + import type { WalletAdvancedReact } from '../types'; import { WalletAdvancedContent } from './WalletAdvancedContent'; import { WalletAdvancedProvider } from './WalletAdvancedProvider'; diff --git a/src/wallet/components/WalletAdvancedAddressDetails.tsx b/src/wallet/components/WalletAdvancedAddressDetails.tsx index bc92e0d931..70dfd9c11c 100644 --- a/src/wallet/components/WalletAdvancedAddressDetails.tsx +++ b/src/wallet/components/WalletAdvancedAddressDetails.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Spinner } from '@/internal/components/Spinner'; import { border, cn, color, pressable, text } from '@/styles/theme'; import { Avatar, Badge, Name } from '@/ui/react/identity'; diff --git a/src/wallet/components/WalletAdvancedDefault.tsx b/src/wallet/components/WalletAdvancedDefault.tsx index 65333e79f6..b4f2df3fdb 100644 --- a/src/wallet/components/WalletAdvancedDefault.tsx +++ b/src/wallet/components/WalletAdvancedDefault.tsx @@ -1,3 +1,5 @@ +'use client'; + import { Avatar, Name } from '@/ui/react/identity'; import { ConnectWallet } from './ConnectWallet'; import { ConnectWalletText } from './ConnectWalletText'; diff --git a/src/wallet/components/WalletAdvancedQrReceive.tsx b/src/wallet/components/WalletAdvancedQrReceive.tsx index 60a4cd51c1..3114533da5 100644 --- a/src/wallet/components/WalletAdvancedQrReceive.tsx +++ b/src/wallet/components/WalletAdvancedQrReceive.tsx @@ -1,3 +1,5 @@ +'use client'; + import { PressableIcon } from '@/internal/components/PressableIcon'; import { QrCodeSvg } from '@/internal/components/QrCode/QrCodeSvg'; import { backArrowSvg } from '@/internal/svg/backArrowSvg'; diff --git a/src/wallet/components/WalletAdvancedSwap.tsx b/src/wallet/components/WalletAdvancedSwap.tsx index 20fa45d9e8..2993dcf0a0 100644 --- a/src/wallet/components/WalletAdvancedSwap.tsx +++ b/src/wallet/components/WalletAdvancedSwap.tsx @@ -1,3 +1,5 @@ +'use client'; + import { PressableIcon } from '@/internal/components/PressableIcon'; import { backArrowSvg } from '@/internal/svg/backArrowSvg'; import { cn } from '@/styles/theme'; diff --git a/src/wallet/components/WalletAdvancedTokenHoldings.tsx b/src/wallet/components/WalletAdvancedTokenHoldings.tsx index ddb25d0a05..8d84bd98a0 100644 --- a/src/wallet/components/WalletAdvancedTokenHoldings.tsx +++ b/src/wallet/components/WalletAdvancedTokenHoldings.tsx @@ -1,3 +1,5 @@ +'use client'; + import { cn, color, text } from '@/styles/theme'; import { type Token, TokenImage } from '@/token'; import { useWalletAdvancedContext } from './WalletAdvancedProvider';