Skip to content

Commit 4a58f86

Browse files
committed
fix(?): vs conflict
1 parent b928b3e commit 4a58f86

3 files changed

Lines changed: 10 additions & 12 deletions

File tree

components/Connection.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ const account = ref()
2929
const { hostname } = useRequestURL()
3030
3131
switch (hostname) {
32-
case "localhost":
33-
case "dev.celenium.io":
32+
case "celenium.io":
3433
appStore.network = mainnet
3534
break
3635
36+
case "dev.celenium.io":
3737
case "arabica.celenium.io":
38-
case "celenium.io":
38+
case "localhost":
3939
appStore.network = arabica
4040
break
4141

components/TheHeader.vue

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ const showPopup = ref(false)
2525
2626
const head = computed(() => appStore.lastHead)
2727
28-
const featurePreviewMode = ref(false)
29-
30-
onMounted(async () => {
31-
featurePreviewMode.value = localStorage.featurePreview
32-
})
33-
3428
watch(
3529
() => showPopup.value,
3630
() => {
@@ -162,7 +156,7 @@ const handleNavigate = (url) => {
162156
</template>
163157
</Tooltip>
164158

165-
<Connection v-if="featurePreviewMode" />
159+
<Connection :class="$style.connection_btn" />
166160
</Flex>
167161
</Flex>
168162

@@ -356,6 +350,10 @@ const handleNavigate = (url) => {
356350
.container {
357351
margin: 0 12px;
358352
}
353+
354+
.connection_btn {
355+
display: none;
356+
}
359357
}
360358
361359
@media (max-width: 400px) {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"devDependencies": {
1515
"@nuxt/devtools": "latest",
1616
"cross-env": "^7.0.3",
17-
"nuxt": "3.9.1",
18-
"nuxt-og-image": "2.0.28",
17+
"nuxt": "3.11.2",
18+
"nuxt-og-image": "3.0.0-rc.52",
1919
"nuxt-simple-sitemap": "^4.2.0",
2020
"sass": "1.66.1",
2121
"sass-loader": "13.3.2",

0 commit comments

Comments
 (0)