Skip to content

Commit

Permalink
fix: ensure case insensitive search on SelectAssetForm (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
2wheeh authored Aug 28, 2024
1 parent 86d2b4e commit d98b901
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SelectAssetForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function SelectAssetForm(props: SelectAssetFormProps) {
} = props;
const theme = useTheme();
const [searchKeyword, setSearchKeyword] = useState("");
const deferredSearchKeyword = useDeferredValue(searchKeyword);
const deferredSearchKeyword = useDeferredValue(searchKeyword.toLowerCase());
const { getAsset } = useAssets();
const { bookmarks, toggleBookmark } = useBookmark();
const network = useNetwork();
Expand Down

0 comments on commit d98b901

Please sign in to comment.