Skip to content

Commit

Permalink
always show possible wallets if multiple
Browse files Browse the repository at this point in the history
  • Loading branch information
attente committed Nov 8, 2024
1 parent 7f43022 commit 5fd1987
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/Recovery.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ function Recovery() {
</Box>
</Box>

{selectingOtherWallets && possibleWallets.length > 1 && (
{(selectingOtherWallets || possibleWallets.length > 1) && (
<Box flexDirection="column" gap="4">
<Box display="grid" gap="4" style={{ gridTemplateColumns: '1fr 1fr 1fr' }}>
{possibleWallets.map(walletAddress => {
Expand Down

0 comments on commit 5fd1987

Please sign in to comment.