Remove use of async components

When async components are added dynamically to the tree via v-for list
that change their order and position gets messed up.  I am not sure what
causes this, so I will just work around the issue for now and not use
async components.

Components that need async data loaded will instead depend on the parent
page fetching this data during its setup.
This commit is contained in:
Hornwitser 2025-07-16 18:59:11 +02:00
parent 345caec57f
commit 4ff3dcb3fe
6 changed files with 0 additions and 7 deletions

View file

@ -55,7 +55,6 @@
<script lang="ts" setup>
useEventSource();
const usersStore = useUsersStore();
await usersStore.fetch();
async function saveUser(user: ClientUser) {
try {