New Backend changes

This commit is contained in:
2025-09-07 19:04:39 +02:00
parent 42edd626fd
commit 45741a6295
2 changed files with 2 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ const auth = useAuthStore()
const setupPage = async () => {
//TODO: BACKEND CHANGE Migrate to auth_users for profile
openTasks.value = (await useEntities("tasks").select().filter(i => !i.archived && i.user_id === auth.user.id))
openTasks.value = (await useEntities("tasks").select()).filter(i => !i.archived && i.user_id === auth.user.id)
}
setupPage()