Skip to content

Commit

Permalink
reduce search threshold to 1 character (#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamshd authored Jul 7, 2023
1 parent a27dd83 commit 8773fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/views/w3m-wallet-explorer-view/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class W3mWalletExplorerView extends LitElement {
}

private readonly searchDebounce = UiUtil.debounce((value: string) => {
if (value.length >= 3) {
if (value.length >= 1) {
this.firstFetch = true
this.endReached = false
this.search = value
Expand Down

0 comments on commit 8773fbd

Please sign in to comment.