Skip to content

Commit

Permalink
Update error and re-order wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
saltict committed Oct 24, 2023
1 parent 00c2e07 commit 10bf36d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ const Component: React.FC<Props> = ({ className = '' }: Props) => {
</div>
)}
{!!filteredTableItems.length && !loading && (
<CrowdloanTable items={filteredTableItems} />
<CrowdloanTable hideBalance={false} items={filteredTableItems} />
)}
{!filteredTableItems.length && !loading && (
<div className={'__empty-list-wrapper'}>
Expand Down
18 changes: 9 additions & 9 deletions packages/extension-koni-ui/src/constants/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ export const PREDEFINED_WALLETS: Record<string, WalletInfo> = {
substrateKey: 'subwallet-js',
url: 'https://subwallet.app/download.html'
},
PolkadotJs: {
description: '',
evmKey: null,
icon: DefaultLogosMap.polkadot_js,
key: 'PolkadotJs',
name: 'Polkadot{.js}',
substrateKey: 'polkadot-js',
url: 'https://polkadot.js.org/extension/'
},
Talisman: {
description: '',
evmKey: 'talismanEth',
Expand All @@ -31,6 +22,15 @@ export const PREDEFINED_WALLETS: Record<string, WalletInfo> = {
name: 'Talisman',
substrateKey: 'talisman',
url: 'https://talisman.xyz/download/'
},
PolkadotJs: {
description: '',
evmKey: null,
icon: DefaultLogosMap.polkadot_js,
key: 'PolkadotJs',
name: 'Polkadot{.js}',
substrateKey: 'polkadot-js',
url: 'https://polkadot.js.org/extension/'
}
};

Expand Down

0 comments on commit 10bf36d

Please sign in to comment.