We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3870419 commit 05341e9Copy full SHA for 05341e9
1 file changed
packages/svelte-query/src/createQueries.ts
@@ -256,7 +256,10 @@ export function createQueries<
256
// @ts-ignore svelte-check thinks this is unused
257
([$result, $defaultedQueriesStore]) => {
258
const [rawResult, combineResult, trackResult] =
259
- observer.getOptimisticResult($defaultedQueriesStore)
+ observer.getOptimisticResult(
260
+ $defaultedQueriesStore,
261
+ (options as QueriesObserverOptions<TCombinedResult>).combine,
262
+ )
263
$result = rawResult
264
return combineResult(trackResult())
265
},
0 commit comments