diff --git a/src/components/ChainSelect/ChainSelectContent.tsx b/src/components/ChainSelect/ChainSelectContent.tsx index 22fa2cf8..1de440a7 100644 --- a/src/components/ChainSelect/ChainSelectContent.tsx +++ b/src/components/ChainSelect/ChainSelectContent.tsx @@ -23,7 +23,7 @@ function ChainSelectContent({ chains, onChange, onClose }: Props) { const filteredChains = useMemo(() => { if (!searchValue) return chains; return matchSorter(chains, searchValue, { - keys: ["chainID", "chainName"], + keys: ["chainID", "chainName", "prettyName"], }); }, [chains, searchValue]);