Skip to content

Commit

Permalink
fix: correct urls (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryenguyen7411 authored Jul 11, 2023
1 parent 857fe89 commit 0d086c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/SwingbyHeader/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ export const Component = ({

return itemsParam.map((it) => {
if (it === DEFAULT_ITEMS[0]) {
return { ...it, href: `https://app.swingby.network/${locale}/swap` };
return { ...it, href: `https://app.swingby.network/${locale}` };
}

if (it === DEFAULT_ITEMS[1]) {
return { ...it, href: `https://app.swingby.network/${locale}/liquidity` };
}

if (it === DEFAULT_ITEMS[2]) {
return { ...it, href: `https://farm.swingby.network/${locale}/explorer` };
return { ...it, href: `https://app.swingby.network/${locale}/explorer` };
}

if (it === DEFAULT_ITEMS[3]) {
Expand Down

0 comments on commit 0d086c3

Please sign in to comment.