Compare commits

..

1 commit

Author SHA1 Message Date
127f21d226
fix: profile modal staying open even if view/route is changed
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful
2025-07-21 12:15:53 +02:00
2 changed files with 1 additions and 5 deletions

View file

@ -1,7 +1,7 @@
<template>
<div>
<Banner v-if="banner" />
<NuxtPage />
<NuxtPage :keepalive="true" />
</div>
</template>

View file

@ -57,10 +57,6 @@ import Button from '~/components/UserInterface/Button.vue';
import VerticalSpacer from '~/components/UserInterface/VerticalSpacer.vue';
import type { GuildResponse } from '~/types/interfaces';
definePageMeta({
keepalive: true
});
const loading = useState("loading", () => false);
const createButtonContainer = ref<HTMLButtonElement>();