Skip to content

Commit 6597798

Browse files
committed
Fix cfg
1 parent bbc7867 commit 6597798

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

services/utils/general.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { isSelfhosted } from "@/services/config.js"
21
import { space } from "./strings.js"
32

43
export const formatBytes = (bytes, decimals = 2) => {
@@ -177,8 +176,8 @@ export const getNetworkName = () => {
177176
}
178177

179178
export const isMainnet = () => {
180-
return true
181-
// return getNetworkName() === "Mainnet" || getNetworkName() === "Development" || isSelfhosted()
179+
// return true
180+
return getNetworkName() === "Mainnet" || getNetworkName() === "Development" || isSelfhosted()
182181
}
183182

184183
export const isMac = () => {

0 commit comments

Comments
 (0)