Skip to content

Commit

Permalink
sort out folder rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tellthemachines committed Jun 25, 2024
1 parent 3092961 commit fe1ee8b
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function GridVisualizer( { clientId, contentRef, parentLayout } ) {
ref={ contentRef }
/>
);
} );
}

const GridVisualizerGrid = forwardRef(
( { clientId, gridElement, isManualGrid }, ref ) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/block-editor/src/hooks/layout-child.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
GridVisualizer,
GridItemResizer,
GridItemMovers,
} from '../components/grid-visualizer';
} from '../components/grid';

function useBlockPropsChildLayoutStyles( { style } ) {
const shouldRenderChildLayoutStyles = useSelect( ( select ) => {
Expand Down
5 changes: 1 addition & 4 deletions packages/block-editor/src/layouts/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ import { appendSelectors, getBlockGapCSS } from './utils';
import { getGapCSSValue } from '../hooks/gap';
import { shouldSkipSerialization } from '../hooks/utils';
import { LAYOUT_DEFINITIONS } from './definitions';
import {
GridVisualizer,
useGridLayoutSync,
} from '../components/grid-visualizer';
import { GridVisualizer, useGridLayoutSync } from '../components/grid';

const RANGE_CONTROL_MAX_VALUES = {
px: 600,
Expand Down

0 comments on commit fe1ee8b

Please sign in to comment.