diff --git a/src/components/common/SocialSigner/__tests__/SocialSignerLogin.test.tsx b/src/components/common/SocialSigner/__tests__/SocialSignerLogin.test.tsx index c3ffada059..44d81351fc 100644 --- a/src/components/common/SocialSigner/__tests__/SocialSignerLogin.test.tsx +++ b/src/components/common/SocialSigner/__tests__/SocialSignerLogin.test.tsx @@ -152,7 +152,7 @@ describe('SocialSignerLogin', () => { .with({ chainId: '1', chainName: 'Ethereum', - disabledWallets: ['socialLogin'], + disabledWallets: ['socialSigner'], }) .build() const mockGnosisChain = chainBuilder() @@ -169,7 +169,7 @@ describe('SocialSignerLogin', () => { it('returns an empty array if social login is not enabled on any chain', () => { const mockGoerliChain = chainBuilder() - .with({ chainId: '5', chainName: 'Goerli', disabledWallets: ['socialLogin'] }) + .with({ chainId: '5', chainName: 'Goerli', disabledWallets: ['socialSigner'] }) .build() const mockChains = [mockEthereumChain, mockGoerliChain] diff --git a/src/hooks/wallets/consts.ts b/src/hooks/wallets/consts.ts index 7dfcf5090e..6bb6a61f93 100644 --- a/src/hooks/wallets/consts.ts +++ b/src/hooks/wallets/consts.ts @@ -15,7 +15,7 @@ export const CGW_NAMES: { [key in WALLET_KEYS]: string | undefined } = { [WALLET_KEYS.WALLETCONNECT_V2]: 'walletConnect_v2', [WALLET_KEYS.COINBASE]: 'coinbase', [WALLET_KEYS.PAIRING]: 'safeMobile', - [WALLET_KEYS.SOCIAL]: 'socialLogin', + [WALLET_KEYS.SOCIAL]: 'socialSigner', [WALLET_KEYS.LEDGER]: 'ledger', [WALLET_KEYS.TREZOR]: 'trezor', [WALLET_KEYS.KEYSTONE]: 'keystone',