Skip to content

Commit f8e5bba

Browse files
authored
Merge pull request #135 from blocknative/fix/show-more
Only render show more button if more wallets. Closes #134
2 parents 3783197 + 91669b0 commit f8e5bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Wallets.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
</li>
7070
{/each}
7171

72-
{#if modalData.secondaryWallets && !showingAllWalletModules}
72+
{#if modalData.secondaryWallets && modalData.secondaryWallets.length && !showingAllWalletModules}
7373
<div>
7474
<Button onclick={() => (showingAllWalletModules = true)}>
7575
Show More

0 commit comments

Comments
 (0)