File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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])
8483const 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 )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments