diff --git a/explorer/src/components/SearchBar.tsx b/explorer/src/components/SearchBar.tsx index e8cce1bdb2..878cb7ba5a 100644 --- a/explorer/src/components/SearchBar.tsx +++ b/explorer/src/components/SearchBar.tsx @@ -187,7 +187,7 @@ function buildTokenOptions( if (matchedTokens.length > 0) { return { label: "Tokens", - options: matchedTokens.map(([id, details]) => ({ + options: matchedTokens.slice(0, 10).map(([id, details]) => ({ label: details.name, value: [details.name, details.symbol, id], pathname: "/address/" + id,