Skip to content

Commit 2ab2087

Browse files
committed
Show node stats
1 parent 0ecdaac commit 2ab2087

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

components/LeftSidebar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const mainLinks = reactive([
9595
name: "Ecosystem",
9696
path: "/stats?tab=ecosystem",
9797
queryParam: {tab: "ecosystem"},
98-
show: false,
98+
show: true,
9999
// show: isMainnet(),
100100
},
101101
],

pages/stats/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const tabs = ref([
7777
},
7878
{
7979
name: "ecosystem",
80-
visible: false,
80+
visible: true,
8181
// visible: isMainnet(),
8282
},
8383
])

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.dev
45+
return Server.API.mainnet
4646
}
4747
}
4848

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

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

0 commit comments

Comments
 (0)