-
Notifications
You must be signed in to change notification settings - Fork 109
Closed
Description
Using Tanstack DB with Svelte(kit) is non reactive, example:
// Doesn't work
const { data } = useLiveQuery((query) => query.from({ project: projectsCollection }));
// Works - when using {#each} with query
const query = useLiveQuery((q) => q.from({ project: projectsCollection }));
$inspect(query);I don't believe the underlying queryFn is relevant, but if it is, I'm using fetching via SurrealDB
Metadata
Metadata
Assignees
Labels
No labels