Skip to content

Commit

Permalink
remove () for (s)
Browse files Browse the repository at this point in the history
  • Loading branch information
GrandSchtroumpf committed Dec 11, 2024
1 parent 7b10a1d commit f750ecd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/explorer/suggestion/SuggestionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const SuggestionList: FC<Props> = (props) => {
{!!filteredTokens.length && (
<div id="filtered-token-list" data-tab="token">
<h3 className="text-14 font-weight-500 px-30 text-white/60">
Token(s)
Tokens
</h3>
{filteredTokens.slice(0, maxTokens).map((token, index) => (
<button
Expand Down Expand Up @@ -84,9 +84,7 @@ export const SuggestionList: FC<Props> = (props) => {
)}
{!!filteredPairs.length && (
<div id="filtered-pair-list" data-tab="pair">
<h3 className="text-14 font-weight-500 px-30 text-white/60">
Pair(s)
</h3>
<h3 className="text-14 font-weight-500 px-30 text-white/60">Pairs</h3>
{filteredPairs.slice(0, maxPairs).map((pair, index) => {
const slug = toPairSlug(pair.baseToken, pair.quoteToken);
return (
Expand Down

0 comments on commit f750ecd

Please sign in to comment.