From b3bf6fd5ce3378c61b016a1e1f15421f4d6582a6 Mon Sep 17 00:00:00 2001 From: wjrjerome Date: Fri, 16 Aug 2024 17:49:55 +1000 Subject: [PATCH] chore: update the medium and mainnet url to labs --- src/app/components/Footer/Footer.tsx | 2 +- src/config/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/Footer/Footer.tsx b/src/app/components/Footer/Footer.tsx index 09ba31e6..170e4060 100644 --- a/src/app/components/Footer/Footer.tsx +++ b/src/app/components/Footer/Footer.tsx @@ -40,7 +40,7 @@ const iconLinks = [ }, { name: "Medium", - url: "https://medium.com/babylonchain-io", + url: "https://medium.com/babylonlabs-io", Icon: BsMedium, }, { diff --git a/src/config/index.ts b/src/config/index.ts index 88fc21ef..ec639445 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -10,5 +10,5 @@ export const shouldDisplayTestingMsg = (): boolean => { export const getNetworkAppUrl = (): string => { return shouldDisplayTestingMsg() ? "https://btcstaking.testnet.babylonchain.io" - : "https://btcstaking.babylonchain.io"; + : "https://btcstaking.babylonlabs.io"; };