fix(front): remove LegacyLayout from App.vue because it created errors in Chrome

This commit is contained in:
upsiflu 2024-12-17 12:12:02 +01:00
parent a0a97e2bca
commit bddbb813dc
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
<script setup lang="ts">
import LegacyLayout from '~/LegacyLayout.vue'
// import LegacyLayout from '~/LegacyLayout.vue'
// TODO: Check if we ever need LegacyLayout
import UiApp from '~/ui/App.vue'
import type { QueueTrack } from '~/composables/audio/queue'
@ -87,8 +88,8 @@ const isUIv2 = useLocalStorage('ui-v2', true)
</script>
<template>
<UiApp v-if="isUIv2" />
<LegacyLayout v-else />
<UiApp/>
<!-- <LegacyLayout v-else /> -->
</template>
<style>