Skip to content

Commit

Permalink
fix liquidity markets link
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianscatularo committed Dec 19, 2023
1 parent ce4a904 commit cd6b798
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1846,7 +1846,7 @@ export const MULTI_CHAIN_TOKENS: MultiChainInfo =
[CHAIN_ID_POLYGON]: {},
} as MultiChainInfo);

export const AVAILABLE_MARKETS_URL = "docs/faqs/liquid-markets";
export const AVAILABLE_MARKETS_URL = "/docs/faqs/liquid-markets";

export const SOLANA_SYSTEM_PROGRAM_ADDRESS = "11111111111111111111111111111111";
export const FEATURED_MARKETS_JSON_URL =
Expand All @@ -1861,9 +1861,9 @@ export const logoOverrides = new Map<string, string>([

export const getHowToAddTokensToWalletUrl = (chainId: ChainId) => {
if (isEVMChain(chainId)) {
return "docs/video-tutorials/how-to-manually-add-tokens-to-your-wallet#metamask";
return "/docs/video-tutorials/how-to-manually-add-tokens-to-your-wallet#metamask";
} else if (isTerraChain(chainId)) {
return "docs/video-tutorials/how-to-manually-add-tokens-to-your-wallet#terra-station";
return "/docs/video-tutorials/how-to-manually-add-tokens-to-your-wallet#terra-station";
}
return "";
};
Expand Down

0 comments on commit cd6b798

Please sign in to comment.