diff --git a/src/components/asset-list/RecyclerAssetList2/index.tsx b/src/components/asset-list/RecyclerAssetList2/index.tsx index 41da7992c6d..779bce675da 100644 --- a/src/components/asset-list/RecyclerAssetList2/index.tsx +++ b/src/components/asset-list/RecyclerAssetList2/index.tsx @@ -17,7 +17,6 @@ import AndroidContextMenu from '@/components/context-menu/ContextMenu.android'; import ContextMenuButton from '@/components/native-context-menu/contextMenu'; import { analytics } from '@/analytics'; import lang from 'i18n-js'; -import { useWalletConnectV2Sessions } from '@/walletConnect/hooks/useWalletConnectV2Sessions'; import { IS_ANDROID } from '@/env'; export type AssetListType = 'wallet' | 'ens-profile' | 'select-nft'; @@ -149,8 +148,6 @@ function NavbarOverlay({ accentColor, position }: { accentColor?: string; positi // //////////////////////////////////////////////////// // Context Menu - const { sessions: activeWCV2Sessions } = useWalletConnectV2Sessions(); - const menuConfig = React.useMemo( () => ({ menuItems: [ @@ -173,7 +170,7 @@ function NavbarOverlay({ accentColor, position }: { accentColor?: string; positi ].filter(Boolean), ...(ios ? { menuTitle: '' } : {}), }), - [activeWCV2Sessions.length] + [] ); const handlePressMenuItem = React.useCallback(