File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
frontend/src/components/editor/chrome/wrapper Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import { SnippetsPanel } from "../panels/snippets-panel";
3232import { TracingPanel } from "../panels/tracing-panel" ;
3333import { VariablePanel } from "../panels/variable-panel" ;
3434import { useChromeActions , useChromeState } from "../state" ;
35- import { FloatingMinimap } from "./floating- minimap" ;
35+ import { Minimap } from "./minimap" ;
3636import { PanelsWrapper } from "./panels" ;
3737import { createStorage } from "./storage" ;
3838import { handleDragging } from "./utils" ;
@@ -245,7 +245,7 @@ export const AppChrome: React.FC<PropsWithChildren> = ({ children }) => {
245245 </ Panel >
246246 < ContextAwarePanel />
247247 </ PanelGroup >
248- < FloatingMinimap />
248+ < Minimap />
249249 < ErrorBoundary >
250250 < TooltipProvider >
251251 < Footer />
Original file line number Diff line number Diff line change @@ -126,9 +126,7 @@ const MinimapCell: React.FC<MinimapCellProps> = (props) => {
126126 ) ;
127127} ;
128128
129- export const FloatingMinimap : React . FC < { className ?: string } > = ( {
130- className,
131- } ) => {
129+ export const Minimap : React . FC < { className ?: string } > = ( { className } ) => {
132130 const notebook = useNotebook ( ) ;
133131 const actions = useCellActions ( ) ;
134132 const handleCellClick = ( cellId : CellId ) => {
You can’t perform that action at this time.
0 commit comments