We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75b91b commit efac6bfCopy full SHA for efac6bf
packages/solid-query-devtools/src/index.tsx
@@ -10,6 +10,10 @@ export const SolidQueryDevtools: typeof SolidQueryDevtoolsComp = isDev
10
}
11
12
export const SolidQueryDevtoolsPanel: typeof SolidQueryDevtoolsCompPanel =
13
- clientOnly(() => import('./devtoolsPanel'))
+ isDev
14
+ ? clientOnly(() => import('./devtoolsPanel'))
15
+ : function () {
16
+ return null
17
+ }
18
19
export type { DevtoolsPanelOptions } from './devtoolsPanel'
0 commit comments