Skip to content

Commit 4a0fafd

Browse files
authored
Merge branch 'alpha' into feature/throwOnError
2 parents e3bf43f + 8c69c5e commit 4a0fafd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

packages/solid-query/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tanstack/solid-query",
3-
"version": "5.0.0-alpha.21",
3+
"version": "5.0.0-alpha.22",
44
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
55
"author": "tannerlinsley",
66
"license": "MIT",

packages/solid-query/src/createBaseQuery.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ export function createBaseQuery<
9191
// copying over the missing properties from state in order to support hydration
9292
dataUpdateCount: query.state.dataUpdateCount,
9393
fetchFailureCount: query.state.fetchFailureCount,
94-
fetchFailureReason: query.state.fetchFailureReason,
95-
fetchMeta: query.state.fetchMeta,
94+
// Removing these properties since they might not be serializable
95+
// fetchFailureReason: query.state.fetchFailureReason,
96+
// fetchMeta: query.state.fetchMeta,
9697
isInvalidated: query.state.isInvalidated,
9798
}
9899

0 commit comments

Comments
 (0)