Skip to content

Commit 251a2ed

Browse files
committed
chore: add an unsupported namespace and change displayed chains number for test
1 parent 96c5ec4 commit 251a2ed

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

wallets/provider-phantom/src/legacy/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ export const getWalletInfo: (allBlockChains: BlockchainMeta[]) => WalletInfo = (
145145
value: 'Sui',
146146
id: 'SUI',
147147
chains: [suiChains.sui],
148+
unsupported: true,
148149
},
149150
],
150151
},

widget/embedded/src/components/WalletStatefulConnect/SupportedChainsList.styles.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ export const SupportedChainItem = styled('div', {
2222
display: 'flex',
2323
alignItems: 'center',
2424
justifyContent: 'center',
25+
userSelect: 'none',
2526
});

widget/embedded/src/components/WalletStatefulConnect/SupportedChainsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
SupportedChainsContainer,
1111
} from './SupportedChainsList.styles';
1212

13-
const SUPPORTED_CHAINS_MAX_DISPLAYED_NUMBER = 3;
13+
const SUPPORTED_CHAINS_MAX_DISPLAYED_NUMBER = 2;
1414

1515
export function SupportedChainsList(props: PropTypes) {
1616
const { chains } = props;

0 commit comments

Comments
 (0)