Skip to content

Commit

Permalink
Merge branch 'alpha' into feature/throwOnError
Browse files Browse the repository at this point in the history
  • Loading branch information
TkDodo authored Apr 28, 2023
2 parents e3bf43f + 8c69c5e commit 4a0fafd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/solid-query/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tanstack/solid-query",
"version": "5.0.0-alpha.21",
"version": "5.0.0-alpha.22",
"description": "Primitives for managing, caching and syncing asynchronous and remote data in Solid",
"author": "tannerlinsley",
"license": "MIT",
Expand Down
5 changes: 3 additions & 2 deletions packages/solid-query/src/createBaseQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ export function createBaseQuery<
// copying over the missing properties from state in order to support hydration
dataUpdateCount: query.state.dataUpdateCount,
fetchFailureCount: query.state.fetchFailureCount,
fetchFailureReason: query.state.fetchFailureReason,
fetchMeta: query.state.fetchMeta,
// Removing these properties since they might not be serializable
// fetchFailureReason: query.state.fetchFailureReason,
// fetchMeta: query.state.fetchMeta,
isInvalidated: query.state.isInvalidated,
}

Expand Down

0 comments on commit 4a0fafd

Please sign in to comment.