Skip to content

Commit 9898322

Browse files
authored
Update signals.ts
1 parent 51749ab commit 9898322

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

query/src/lib/signals.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
2727
* This function is used to merge multiple signal queries into one.
2828
* It will return a new base query result that will merge the results of all the queries.
2929
* Note that it should be used inside injection context.
30-
* If you pass the 'intersectStaleData' flag, it will also intersect unsuccessful result if data for all queries is present.
30+
* If you pass the 'intersectStaleData' flag, it will also intersect unsuccessful result in case data for all queries is present.
3131
*
3232
* @example
3333
*
@@ -38,7 +38,6 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
3838
* return todos + posts;
3939
* });
4040
*
41-
*
4241
* @example
4342
*
4443
* const query = intersectResults(
@@ -51,7 +50,6 @@ type UnifiedTypes<T> = T extends Array<Signal<QueryObserverBaseResult<any>>>
5150
* }
5251
* );
5352
*
54-
*
5553
* @example
5654
*
5755
* const query = intersetResults({
@@ -79,7 +77,7 @@ export function intersectResults<
7977
: () => Object.entries(signals).reduce((acc, [key, value]) => {
8078
acc[key as keyof UnifiedTypes<T>] = value().data;
8179
return acc;
82-
}, {} as UnifiedTypes<T>)
80+
}, {} as UnifiedTypes<T>);
8381

8482
return computed(() => {
8583
const mappedResult = {

0 commit comments

Comments
 (0)