Skip to content

Commit

Permalink
Merge pull request #760 from ionicprotocol/fix/kill-hyperlink
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm authored Nov 6, 2024
2 parents 997d8fb + 450a48c commit a82ec22
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions packages/ui/app/_components/DynamicSubNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,16 @@ function DynamicSubNav() {
);
}
return (
<a
<div
className={`${`${pools[+chainId]?.bg ?? pools[mode.id]?.bg} ${
pools[+chainId]?.text ?? pools[mode.id]?.text
}`} absolute w-full z-20 top-full left-0 text-center text-sm font-medium cursor-pointer `}
// onClick={() => router.push('/points')}
href="https://jumper.exchange/superfest/"
target="_blank"
}`} absolute w-full z-20 top-full left-0 text-center text-sm font-medium `}
>
<div className={`h-max w-full flex group z-20 givep overflow-x-hidden`}>
{clone()}
{clone()}
</div>
</a>
</div>
);
}

Expand Down

0 comments on commit a82ec22

Please sign in to comment.