Skip to content

Commit 0aa423f

Browse files
ci: apply automated fixes
1 parent e10e9f9 commit 0aa423f

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

packages/react-query-devtools/src/__tests__/ReactQueryDevtoolsPanel.test.tsx

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,7 @@ describe('ReactQueryDevtoolsPanel', () => {
6969
const queryClient = new QueryClient()
7070
const onClose = vi.fn()
7171

72-
render(
73-
<ReactQueryDevtoolsPanel client={queryClient} onClose={onClose} />,
74-
)
72+
render(<ReactQueryDevtoolsPanel client={queryClient} onClose={onClose} />)
7573

7674
expect(setOnCloseMock).toHaveBeenCalledWith(expect.any(Function))
7775
})
@@ -95,10 +93,7 @@ describe('ReactQueryDevtoolsPanel', () => {
9593
]
9694

9795
render(
98-
<ReactQueryDevtoolsPanel
99-
client={queryClient}
100-
errorTypes={errorTypes}
101-
/>,
96+
<ReactQueryDevtoolsPanel client={queryClient} errorTypes={errorTypes} />,
10297
)
10398

10499
expect(setErrorTypesMock).toHaveBeenCalledWith(errorTypes)

0 commit comments

Comments
 (0)