File tree Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Expand file tree Collapse file tree 2 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,6 @@ export const ReactQueryDevtools: (typeof Devtools)['ReactQueryDevtools'] =
10
10
}
11
11
: Devtools . ReactQueryDevtools
12
12
13
- export const ReactQueryDevtoolsPanel : ( typeof DevtoolsPanel ) [ 'ReactQueryDevtoolsPanel' ] =
14
- process . env . NODE_ENV !== 'development'
15
- ? function ( ) {
16
- return null
17
- }
18
- : DevtoolsPanel . ReactQueryDevtoolsPanel
13
+ export const ReactQueryDevtoolsPanel : ( typeof DevtoolsPanel ) [ 'ReactQueryDevtoolsPanel' ] = DevtoolsPanel . ReactQueryDevtoolsPanel
19
14
20
15
export type DevtoolsPanelOptions = DevtoolsPanel . DevtoolsPanelOptions
Original file line number Diff line number Diff line change @@ -9,10 +9,6 @@ export const SolidQueryDevtools: typeof SolidQueryDevtoolsComp = isDev
9
9
return null
10
10
}
11
11
12
- export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel = isDev
13
- ? clientOnly ( ( ) => import ( './devtoolsPanel' ) )
14
- : function ( ) {
15
- return null
16
- }
12
+ export const SolidQueryDevtoolsPanel : typeof SolidQueryDevtoolsCompPanel = clientOnly ( ( ) => import ( './devtoolsPanel' ) )
17
13
18
14
export type { DevtoolsPanelOptions } from './devtoolsPanel'
You can’t perform that action at this time.
0 commit comments