Skip to content

Commit

Permalink
fix(token-search): ignore search input case when triggering the search (
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetopito authored Jan 12, 2024
1 parent 528c381 commit 4568b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/tokens/src/hooks/tokens/useSearchToken.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function useSearchToken(input: string | null): TokenSearchResponse {

useEffect(() => {
setIsLoading(true)
}, [input])
}, [inputLowerCase])

useEffect(() => {
// When there are results from toke lists, then we don't need to wait for the rest
Expand Down

0 comments on commit 4568b21

Please sign in to comment.