Skip to content

Commit 1e8d69b

Browse files
committed
Change visibility
1 parent 23f3eeb commit 1e8d69b

4 files changed

Lines changed: 5 additions & 7 deletions

File tree

components/LeftSidebar.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ const mainLinks = reactive([
9595
name: "Ecosystem",
9696
path: "/stats?tab=ecosystem",
9797
queryParam: {tab: "ecosystem"},
98-
show: true,
99-
// show: isMainnet(),
98+
show: isMainnet(),
10099
},
101100
],
102101
},

components/modules/stats/GeoMap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ watch(
510510
<template #content>
511511
<Flex align="center" gap="2" :style="{ width: '200px' }">
512512
<Text size="12" weight="600" color="secondary">
513-
Somewhere in..
513+
"Somewhere in ..."
514514
<Text size="12" weight="400" color="secondary">
515515
means that it was not possible to determine the exact location.
516516
</Text>

pages/stats/index.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ const tabs = ref([
7777
},
7878
{
7979
name: "ecosystem",
80-
visible: true,
81-
// visible: isMainnet(),
80+
visible: isMainnet(),
8281
},
8382
])
8483
const activeTab = ref(route.query.tab && tabs.value.filter(t => t.visible).map(t => t.name).includes(route.query.tab) ? route.query.tab : tabs.value[0].name)

services/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const useServerURL = () => {
4242
return Server.API.dev
4343

4444
default:
45-
return Server.API.mainnet
45+
return Server.API.dev
4646
}
4747
}
4848

@@ -69,7 +69,7 @@ export const useSocketURL = () => {
6969
return Server.WSS.dev
7070

7171
default:
72-
return Server.WSS.mainnet
72+
return Server.WSS.dev
7373
}
7474
}
7575

0 commit comments

Comments
 (0)