Skip to content

Commit

Permalink
Merge pull request #102 from mstable/fix/navbar
Browse files Browse the repository at this point in the history
feat: update navbar
  • Loading branch information
toniocodo committed Apr 26, 2023
2 parents f1e6d79 + 9964f05 commit 6ddee91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/layout/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ const urls: {
isButton?: boolean
}[] = [
{
title: 'Withdraw',
title: 'Legacy Support',
href: 'https://withdraw.mstable.app',
isButton: true,
},
]

Expand All @@ -103,7 +104,7 @@ const DesktopLinks: FC = () => (
{urls.map(({ title, href, isButton = false }) => (
<li key={title}>
{isButton ? (
<LinkButton external={false} href={href} highlight>
<LinkButton external={false} href={href}>
{title}
</LinkButton>
) : (
Expand Down

0 comments on commit 6ddee91

Please sign in to comment.