Skip to content

Commit 498ddfa

Browse files
Fix prettier
1 parent 44bcee8 commit 498ddfa

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

packages/query-core/src/tests/queryClient.test.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ import type {
1313
QueryFunction,
1414
QueryObserverOptions,
1515
} from '..'
16-
import { MutationObserver, QueryObserver, focusManager, onlineManager } from '..'
16+
import {
17+
MutationObserver,
18+
QueryObserver,
19+
focusManager,
20+
onlineManager,
21+
} from '..'
1722
import { noop } from '../utils'
1823
import { vi } from 'vitest'
1924

packages/react-query/src/suspense.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
import type { DefaultedQueryObserverOptions, QueryObserverResult, QueryKey, QueryObserver } from '@tanstack/query-core'
1+
import type {
2+
DefaultedQueryObserverOptions,
3+
QueryObserverResult,
4+
QueryKey,
5+
QueryObserver,
6+
} from '@tanstack/query-core'
27
import type { QueryErrorResetBoundaryValue } from './QueryErrorResetBoundary'
38

49
export const ensureStaleTime = (

packages/solid-query/src/__tests__/createInfiniteQuery.test.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import { fireEvent, render, screen, waitFor } from '@solidjs/testing-library'
22

3-
import { createQueryClient, sleep, Blink, queryKey, setActTimeout } from './utils'
3+
import {
4+
createQueryClient,
5+
sleep,
6+
Blink,
7+
queryKey,
8+
setActTimeout,
9+
} from './utils'
410

511
import {
612
createEffect,

0 commit comments

Comments
 (0)