File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
- import { fade } from ' svelte/transition'
3
2
import Button from ' ../elements/Button.svelte'
4
3
import IconButton from ' ../elements/IconButton.svelte'
5
4
import { WalletSelectModalData , WalletModule } from ' ../interfaces'
57
56
</style >
58
57
59
58
<ul class =" bn-onboard-custom bn-onboard-modal-select-wallets" >
60
- {#each modalData .primaryWallets as wallet }
61
- <li in:fade >
59
+ {#each modalData .primaryWallets as wallet , i ( wallet . name ) }
60
+ <li >
62
61
<IconButton
63
62
onclick ={() => handleWalletSelect (wallet )}
64
63
iconSrc ={wallet .iconSrc }
78
77
{/if }
79
78
80
79
{#if showingAllWalletModules }
81
- {#each modalData .secondaryWallets as wallet }
82
- <li in:fade >
80
+ {#each modalData .secondaryWallets as wallet , i ( wallet . name ) }
81
+ <li >
83
82
<IconButton
84
83
onclick ={() => handleWalletSelect (wallet )}
85
84
iconSrc ={wallet .iconSrc }
You can’t perform that action at this time.
0 commit comments