Skip to content

Commit

Permalink
fix: [GSW-1977] Update Launchpad Click Here Path
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrg committed Nov 21, 2024
1 parent 1bcab5c commit 94f8fac
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import React from "react";
import Link from "next/link";
import { useTranslation } from "react-i18next";

import { GNS_TOKEN_PATH } from "@constants/environment.constant";

import IconArrowRight from "@components/common/icons/IconArrowRight";
import { DetailClickHereWrapper, LinkButton } from "./LaunchpadDetailClickHere.styles";

Expand All @@ -12,7 +14,7 @@ const LaunchpadDetailClickHere = () => {
<DetailClickHereWrapper>
<LinkButton>
<span>{t("Launchpad:clickHere.text")}</span>
<Link href="/swap?to=gno.land/r/gnoswap/v2/gns">
<Link href={`/swap?to=${GNS_TOKEN_PATH}`}>
{t("Launchpad:clickHere.button")} <IconArrowRight />
</Link>
</LinkButton>
Expand Down

0 comments on commit 94f8fac

Please sign in to comment.