@triplit/svelte 0.2.8 → 0.2.9
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -0
- package/dist/index.svelte.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.svelte.js
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
export function useQuery(client, query, options) {
|
13
13
|
let results = $state(undefined);
|
14
14
|
let isInitialFetch = $state(true);
|
15
|
-
let fetchingLocal = $state(
|
15
|
+
let fetchingLocal = $state(true);
|
16
16
|
let fetchingRemote = $state(client.connectionStatus !== 'CLOSED');
|
17
17
|
let fetching = $derived(fetchingLocal || (isInitialFetch && fetchingRemote));
|
18
18
|
let error = $state(undefined);
|