Skip to content

Commit

Permalink
revert env
Browse files Browse the repository at this point in the history
  • Loading branch information
noahjoeris committed Aug 15, 2024
1 parent b9fe3a5 commit c358f95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/src/hooks/useEnvironment.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { Environment } from '@/store/environmentStore'
import { shouldUseTestnet } from '@/utils/env'

const useEnvironment = () => {
const environment = Environment.Mainnet
const environment = shouldUseTestnet ? Environment.Testnet : Environment.Mainnet
return { environment }
}

Expand Down

0 comments on commit c358f95

Please sign in to comment.