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"