From 429d65cee919524af56a5cecbab7e10d76755689 Mon Sep 17 00:00:00 2001 From: Sven <38101365+svenvoskamp@users.noreply.github.com> Date: Thu, 22 Feb 2024 17:47:32 +0100 Subject: [PATCH] fix: prevent users from seeing email icon while logged in through walletconnect (#1965) --- packages/core/src/controllers/ConnectionController.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/core/src/controllers/ConnectionController.ts b/packages/core/src/controllers/ConnectionController.ts index 1678ddadb7..3e4b2ed89d 100644 --- a/packages/core/src/controllers/ConnectionController.ts +++ b/packages/core/src/controllers/ConnectionController.ts @@ -71,6 +71,7 @@ export const ConnectionController = { state.wcUri = uri state.wcPairingExpiry = CoreHelperUtil.getPairingExpiry() }) + StorageUtil.setConnectedConnector('WALLET_CONNECT') }, async connectExternal(options: ConnectExternalOptions) {