From 3a1778ed57e94282cd1ceaea6684ba86418ce359 Mon Sep 17 00:00:00 2001 From: Alduin Date: Mon, 23 Sep 2024 15:42:32 -0300 Subject: [PATCH] Fix env --- frontend/src/config/environment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/config/environment.ts b/frontend/src/config/environment.ts index cb2777b..4da0183 100644 --- a/frontend/src/config/environment.ts +++ b/frontend/src/config/environment.ts @@ -5,7 +5,7 @@ export type Environment = "mainnet" | "testnet" export const ENV: Environment = match(window.location.host) .returnType() .with("predict.levana.finance", () => "mainnet") - .otherwise(() => "mainnet") + .otherwise(() => "testnet") export const IS_TESTNET = ENV === "testnet"