Skip to content

Commit 148cbc0

Browse files
committed
Hide ecosystem tab
1 parent 27427b4 commit 148cbc0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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: isMainnet(),
98+
show: false,
9999
},
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: isMainnet(),
80+
visible: false,
8181
},
8282
])
8383
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)

0 commit comments

Comments
 (0)