Skip to content

Commit 7db6ca0

Browse files
committed
chore: fix prettier
1 parent 149a043 commit 7db6ca0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/query-core/src/queryObserver.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,9 @@ export class QueryObserver<
624624
return true
625625
}
626626

627-
const includedProps = new Set(notifyOnChangePropsValue ?? this.#trackedProps)
627+
const includedProps = new Set(
628+
notifyOnChangePropsValue ?? this.#trackedProps,
629+
)
628630

629631
if (this.options.throwOnError) {
630632
includedProps.add('error')

0 commit comments

Comments
 (0)