Skip to content
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/Explorer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

import { displayValue, styled } from './utils'
Expand Down
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/devtools.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import { useSyncExternalStore } from './useSyncExternalStore'
import type {
Expand Down
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/theme.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

export const defaultTheme = {
Expand Down
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/useLocalStorage.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

const getItem = (key: string): unknown => {
Expand Down
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/useMediaQuery.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

export default function useMediaQuery(query: string): boolean | undefined {
Expand Down
1 change: 1 addition & 0 deletions packages/react-query-devtools/src/utils.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import type { Query } from '@tanstack/react-query'
import SuperJSON from 'superjson'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

import type { PersistQueryClientOptions } from '@tanstack/query-persist-client-core'
Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/QueryClientProvider.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

import type { QueryClient } from '@tanstack/query-core'
Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/QueryErrorResetBoundary.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'

// CONTEXT
Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/useBaseQuery.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import { useSyncExternalStore } from './useSyncExternalStore'

Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/useIsFetching.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import type { QueryKey, QueryFilters } from '@tanstack/query-core'
import { notifyManager, parseFilterArgs } from '@tanstack/query-core'
Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/useIsMutating.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import { useSyncExternalStore } from './useSyncExternalStore'

Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/useMutation.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import { useSyncExternalStore } from './useSyncExternalStore'

Expand Down
1 change: 1 addition & 0 deletions packages/react-query/src/useQueries.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import * as React from 'react'
import { useSyncExternalStore } from './useSyncExternalStore'

Expand Down