* fix 404 when returning to collections dashboard, fix a couple hydration issues * fix clippy * fmt * fix hydration issue on revenue page * fix transfer history page error --------- Co-authored-by: aecsocket <aecsocket@tutanota.com>
20 lines
404 B
Vue
20 lines
404 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<NuxtRouteAnnouncer />
|
|
<ClientOnly>
|
|
<LoadingBar />
|
|
</ClientOnly>
|
|
<NotificationPanel />
|
|
<I18nDebugPanel />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { I18nDebugPanel, LoadingBar, NotificationPanel } from '@modrinth/ui'
|
|
|
|
import { setupProviders } from '~/providers/setup.ts'
|
|
|
|
const auth = await useAuth()
|
|
setupProviders(auth)
|
|
</script>
|