File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import {
20
20
setStorageItem ,
21
21
} from "./utils/storage.js"
22
22
import "../input.css"
23
- import Inspector from "bippy/experiments/inspect"
23
+ /* import Inspector from "bippy/experiments/inspect" */
24
24
import { useHotkeys } from "react-hotkeys-hook"
25
25
import type { RdtPlugin } from "../index.js"
26
26
import { Breakpoints } from "./components/Breakpoints.js"
@@ -102,7 +102,7 @@ const DevTools = ({ plugins: pluginArray }: ReactRouterDevtoolsProps) => {
102
102
< Trigger isOpen = { isOpen } setIsOpen = { setIsOpen } />
103
103
< LiveUrls />
104
104
< Breakpoints />
105
- < Inspector enabled = { settings . enableInspector } />
105
+ { /* <Inspector enabled={settings.enableInspector} /> */ }
106
106
< MainPanel isOpen = { isOpen } >
107
107
< div className = "flex h-full" >
108
108
< Tabs plugins = { plugins } setIsOpen = { setIsOpen } />
Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ export const SettingsTab = () => {
52
52
>
53
53
Show breakpoint indicator
54
54
</ Checkbox >
55
- < Checkbox
55
+ { /* <Checkbox
56
56
id="enableInspector"
57
57
hint="This allows you to render an inspector provided by bippy to inspect react components"
58
58
onChange={() => setSettings({ enableInspector: !settings.enableInspector })}
59
59
value={settings.enableInspector}
60
60
>
61
61
Enable react component inspector
62
- </ Checkbox >
62
+ </Checkbox> */ }
63
63
64
64
< hr className = "mt-2 border-gray-700" />
65
65
< Stack gap = "lg" >
You can’t perform that action at this time.
0 commit comments