From a5fd70b86a81529f734ee68ec55e0f46a78faadf Mon Sep 17 00:00:00 2001 From: Michal Date: Fri, 2 Aug 2024 12:23:16 +0100 Subject: [PATCH] Update useDAppsConnected.tsx --- .../src/features/Discover/common/useDAppsConnected.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wallet-mobile/src/features/Discover/common/useDAppsConnected.tsx b/apps/wallet-mobile/src/features/Discover/common/useDAppsConnected.tsx index 14a7f44c9a..b1443c5dc6 100644 --- a/apps/wallet-mobile/src/features/Discover/common/useDAppsConnected.tsx +++ b/apps/wallet-mobile/src/features/Discover/common/useDAppsConnected.tsx @@ -19,6 +19,6 @@ export const useDAppsConnected = ( } const selectWalletConnectedOrigins = (connections: DappConnection[], walletId: string, chainId: number) => { - const currentWalletConnections = connections.filter((c) => c.walletId === walletId && c.networkId === chainId) + const currentWalletConnections = connections.filter((c) => c.walletId === walletId && c.chainId === chainId) return currentWalletConnections.map((c) => c.dappOrigin) }