File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import {
2020 setStorageItem ,
2121} from "./utils/storage.js"
2222import "../input.css"
23- import Inspector from "bippy/experiments/inspect"
23+ /* import Inspector from "bippy/experiments/inspect" */
2424import { useHotkeys } from "react-hotkeys-hook"
2525import type { RdtPlugin } from "../index.js"
2626import { Breakpoints } from "./components/Breakpoints.js"
@@ -102,7 +102,7 @@ const DevTools = ({ plugins: pluginArray }: ReactRouterDevtoolsProps) => {
102102 < Trigger isOpen = { isOpen } setIsOpen = { setIsOpen } />
103103 < LiveUrls />
104104 < Breakpoints />
105- < Inspector enabled = { settings . enableInspector } />
105+ { /* <Inspector enabled={settings.enableInspector} /> */ }
106106 < MainPanel isOpen = { isOpen } >
107107 < div className = "flex h-full" >
108108 < Tabs plugins = { plugins } setIsOpen = { setIsOpen } />
Original file line number Diff line number Diff line change @@ -52,14 +52,14 @@ export const SettingsTab = () => {
5252 >
5353 Show breakpoint indicator
5454 </ Checkbox >
55- < Checkbox
55+ { /* <Checkbox
5656 id="enableInspector"
5757 hint="This allows you to render an inspector provided by bippy to inspect react components"
5858 onChange={() => setSettings({ enableInspector: !settings.enableInspector })}
5959 value={settings.enableInspector}
6060 >
6161 Enable react component inspector
62- </ Checkbox >
62+ </Checkbox> */ }
6363
6464 < hr className = "mt-2 border-gray-700" />
6565 < Stack gap = "lg" >
You can’t perform that action at this time.
0 commit comments