Skip to content

Commit

Permalink
fix link
Browse files Browse the repository at this point in the history
  • Loading branch information
saml33 committed Jan 16, 2024
1 parent 0e7db50 commit fb86055
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions app/components/explore/TokenCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@ const TokenCard = ({ token }: { token: FormattedTableData }) => {
<div>
<div className="mb-2 flex-shrink-0">
{logoPath ? (
<Image src={logoPath} alt="Logo" height={32} width={32} />
<Image
className="rounded-full"
src={logoPath}
alt="Logo"
height={32}
width={32}
/>
) : (
<QuestionMarkCircleIcon className="h-8 w-8 text-th-fgd-4" />
)}
Expand Down Expand Up @@ -90,7 +96,7 @@ const TokenCard = ({ token }: { token: FormattedTableData }) => {
</div>
<Link
className="flex items-center justify-between border border-th-bkg-4 py-3 px-4 mx-auto w-full rounded-lg text-sm font-display text-th-fgd-2 mt-6"
href={`/token/${slug}`}
href={`/explore/tokens/${slug}`}
>
<span>Stats and info</span>
<ChevronRightIcon className="h-5 w-5 text-th-fgd-3" />
Expand Down

1 comment on commit fb86055

@vercel
Copy link

@vercel vercel bot commented on fb86055 Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.