Skip to content

Commit

Permalink
Fix env
Browse files Browse the repository at this point in the history
  • Loading branch information
lvn-alduin committed Sep 23, 2024
1 parent 3f54a12 commit 3a1778e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/config/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export type Environment = "mainnet" | "testnet"
export const ENV: Environment = match(window.location.host)
.returnType<Environment>()
.with("predict.levana.finance", () => "mainnet")
.otherwise(() => "mainnet")
.otherwise(() => "testnet")

export const IS_TESTNET = ENV === "testnet"

Expand Down

0 comments on commit 3a1778e

Please sign in to comment.