File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ const appStore = useAppStore()
2020const nodeStore = useNodeStore ()
2121const modalsStore = useModalsStore ()
2222
23- const developerMode = useCookie (" developerMode" , { default : () => false })
24-
2523const head = computed (() => appStore .lastHead )
2624
2725const mainLinks = reactive ([
@@ -155,7 +153,6 @@ const toolsLinks = reactive([
155153 path: " https://terminal.celenium.io" ,
156154 external: true ,
157155 new: true ,
158- hide: ! developerMode .value ,
159156 },
160157 {
161158 icon: " drop" ,
@@ -186,15 +183,6 @@ const toolsLinks = reactive([
186183 },
187184])
188185
189- /** TEMP */
190- watch (
191- () => developerMode .value ,
192- () => {
193- const terminalLinkIdx = toolsLinks .findIndex ((l ) => l .name === " Terminal" )
194- toolsLinks[terminalLinkIdx].hide = ! developerMode .value
195- },
196- )
197-
198186const handleNavigate = (url ) => {
199187 window .location .replace (url)
200188}
You can’t perform that action at this time.
0 commit comments