Skip to content

Commit

Permalink
chore: make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlilley committed Sep 30, 2024
1 parent cc6425a commit 1879373
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/ui/src/components/network-selector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Chain, ChainId } from 'sushi/chain'

import Link from 'next/link'
import { NetworkIcon } from '../icons/NetworkIcon'
import { TronCircle } from '../icons/network'
// import { TronCircle } from '../icons/network/circle/TronCircle'
import { AptosCircle } from '../icons/network/circle/AptosCircle'
import {
Command,
Expand Down Expand Up @@ -79,18 +79,18 @@ function Aptos() {
)
}

function Tron() {
return (
<Link href="/tron/swap" rel="noopener noreferrer">
<CommandItem className="cursor-pointer">
<div className="flex items-center gap-2">
<TronCircle width={22} height={22} />
Tron
</div>
</CommandItem>
</Link>
)
}
// function Tron() {
// return (
// <Link href="/tron/swap" rel="noopener noreferrer">
// <CommandItem className="cursor-pointer">
// <div className="flex items-center gap-2">
// <TronCircle width={22} height={22} />
// Tron
// </div>
// </CommandItem>
// </Link>
// )
// }

const NetworkSelector = <T extends number>({
showNonEvm = false,
Expand Down

0 comments on commit 1879373

Please sign in to comment.