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 27427b4 commit 148cbc0Copy full SHA for 148cbc0
components/LeftSidebar.vue
@@ -95,7 +95,7 @@ const mainLinks = reactive([
95
name: "Ecosystem",
96
path: "/stats?tab=ecosystem",
97
queryParam: {tab: "ecosystem"},
98
- show: isMainnet(),
+ show: false,
99
},
100
],
101
pages/stats/index.vue
@@ -77,7 +77,7 @@ const tabs = ref([
77
78
{
79
name: "ecosystem",
80
- visible: isMainnet(),
+ visible: false,
81
82
])
83
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