From ab62b816f6e81943b8c863b9869fb126260c31b9 Mon Sep 17 00:00:00 2001 From: woodenfurniture <125113430+woodenfurniture@users.noreply.github.com> Date: Tue, 14 Jan 2025 09:01:27 +1100 Subject: [PATCH] chore: cleanup logging of wallet ids --- src/App.tsx | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 0fd04cf0778..b739d65a7e8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -11,13 +11,7 @@ import { IconCircle } from 'components/IconCircle' import { useBridgeClaimNotification } from 'hooks/useBridgeClaimNotification/useBridgeClaimNotification' import { useHasAppUpdated } from 'hooks/useHasAppUpdated/useHasAppUpdated' import { useModal } from 'hooks/useModal/useModal' -import { useWallet } from 'hooks/useWallet/useWallet' -import { - selectShowConsentBanner, - selectShowWelcomeModal, - selectWalletId, -} from 'state/slices/selectors' -import { useAppSelector } from 'state/store' +import { selectShowConsentBanner, selectShowWelcomeModal } from 'state/slices/selectors' const flexGap = { base: 2, md: 3 } const flexDir: ResponsiveValue = { base: 'column', md: 'row' } @@ -75,19 +69,6 @@ export const App = () => { } }, [isNativeOnboardOpen, openNativeOnboard, showWelcomeModal]) - const portfolioWalletId = useAppSelector(selectWalletId) - - const { - state: { deviceId: contextDeviceId }, - } = useWallet() - - useEffect(() => { - console.log({ - portfolioWalletId, - contextDeviceId, - }) - }, [contextDeviceId, portfolioWalletId]) - return ( <> {showConsentBanner && }