From 11499f355a4b5faf6687251e63458aee9117fa38 Mon Sep 17 00:00:00 2001 From: Aleksandar Cakalic Date: Tue, 23 Dec 2025 09:51:09 +0100 Subject: [PATCH] fix: set mobile as installed if it's argentMobile --- src/helpers/mapModalWallets.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers/mapModalWallets.ts b/src/helpers/mapModalWallets.ts index 4962d8f..fc6d2a1 100644 --- a/src/helpers/mapModalWallets.ts +++ b/src/helpers/mapModalWallets.ts @@ -54,7 +54,7 @@ export function getModalWallet( id: connector.id, icon: isCompound ? connectorOrCompoundConnector.icon : connector.icon, connector: connectorOrCompoundConnector, - installed: false, + installed: connector.id === "argentMobile", title: "title" in connector && isString(connector.title) ? connector.title @@ -156,7 +156,7 @@ export const mapModalWallets = ({ id: discovery.id, icon: { light: discoveryIcon, dark: discoveryIcon }, connector: _c, - installed: false, + installed: discovery.id === "argentMobile", download: downloads[storeVersion as keyof typeof downloads], downloads: downloads, }