Skip to content

Commit

Permalink
lint: format
Browse files Browse the repository at this point in the history
  • Loading branch information
NazariiShvets committed Oct 3, 2023
1 parent 51e5874 commit 751ce74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/query/__tests__/connect_query.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,12 @@ describe('connectQuery', () => {
type Query2Data = { bar: string };

const query1 = createQuery({
effect: createEffect((): Query1Data => ({ foo: 'foo' }))
effect: createEffect((): Query1Data => ({ foo: 'foo' })),
});

const query2 = createQuery({
initialData: { bar: '42' } as Query2Data,
effect: createEffect((): Query2Data => ({ bar: 'bar' }))
effect: createEffect((): Query2Data => ({ bar: 'bar' })),
});

connectQuery({
Expand Down

0 comments on commit 751ce74

Please sign in to comment.