Skip to content

Commit 2f89188

Browse files
committed
chore: Format changeset with prettier
1 parent a2d7c78 commit 2f89188

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.changeset/query-observer-state-utils.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ const collection = queryCollectionOptions({
3636

3737
// Check sync status
3838
if (collection.utils.isFetching) {
39-
console.log('Syncing with server...')
39+
console.log("Syncing with server...")
4040
}
4141

4242
if (collection.utils.isRefetching) {
43-
console.log('Background refresh in progress')
43+
console.log("Background refresh in progress")
4444
}
4545

4646
// Show last update time
@@ -49,7 +49,7 @@ console.log(`Last synced: ${lastUpdate.toLocaleTimeString()}`)
4949

5050
// Check error state (now using getters)
5151
if (collection.utils.isError) {
52-
console.error('Sync failed:', collection.utils.lastError)
52+
console.error("Sync failed:", collection.utils.lastError)
5353
console.log(`Failed ${collection.utils.errorCount} times`)
5454
}
5555
```

0 commit comments

Comments
 (0)