Skip to content

Commit 5182080

Browse files
fix narrowing of results
1 parent 972bbca commit 5182080

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/FindWallet/WalletFilterPersona.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const computeFilters = (
4040

4141
return Object.fromEntries(
4242
Object.entries(filters).map(([key, value]) => {
43-
return [key, value && persona.presetFilters[key]]
43+
return [key, value || persona.presetFilters[key]]
4444
})
4545
)
4646
}, initialFilters)

0 commit comments

Comments
 (0)