fix: revert loading optimization for /home to fix sign in

This commit is contained in:
patak 2022-12-22 22:10:50 +01:00
parent 84ea17e0cf
commit 43515b243b
2 changed files with 10 additions and 8 deletions

View file

@ -6,14 +6,14 @@ provideGlobalCommands()
// We want to trigger rerendering the page when account changes
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
const { params } = useRoute()
const { params, path } = useRoute()
</script>
<template>
<NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
<NuxtLayout :key="key">
<!-- TODO: rework the /[account] routes to remove conditional loading -->
<NuxtPage v-if="!params.account || isMastoInitialised" />
<!-- TODO: rework the /[account] routes and the /home (for sign in alias) to remove conditional loading -->
<NuxtPage v-if="(!params.account && path === '/home') || isMastoInitialised" />
</NuxtLayout>
<PWAPrompt />
</template>