We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc7867 commit 6597798Copy full SHA for 6597798
services/utils/general.js
@@ -1,4 +1,3 @@
1
-import { isSelfhosted } from "@/services/config.js"
2
import { space } from "./strings.js"
3
4
export const formatBytes = (bytes, decimals = 2) => {
@@ -177,8 +176,8 @@ export const getNetworkName = () => {
177
176
}
178
179
export const isMainnet = () => {
180
- return true
181
- // return getNetworkName() === "Mainnet" || getNetworkName() === "Development" || isSelfhosted()
+ // return true
+ return getNetworkName() === "Mainnet" || getNetworkName() === "Development" || isSelfhosted()
182
183
184
export const isMac = () => {
0 commit comments