From b21bf84b0a900196f722483b95e782a9e107ef57 Mon Sep 17 00:00:00 2001 From: Alduin Date: Fri, 6 Sep 2024 09:36:14 -0300 Subject: [PATCH] Always testnet for now --- frontend/src/config/environment.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/config/environment.ts b/frontend/src/config/environment.ts index 72fab0c..6ac121f 100644 --- a/frontend/src/config/environment.ts +++ b/frontend/src/config/environment.ts @@ -6,8 +6,6 @@ export type Environment = "mainnet" | "testnet" export const ENV: Environment = match(window.location.host) .returnType() - .with("predict.levana.finance", () => "mainnet") - .with("predict.staff.levana.exchange", () => "mainnet") .otherwise(() => "testnet") export const IS_TESTNET = ENV === "testnet"