Skip to content

Commit

Permalink
Fix columns edit cs
Browse files Browse the repository at this point in the history
  • Loading branch information
JesserH committed Jan 22, 2021
1 parent 0a1aa6f commit 3c570b6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/block-library/src/columns/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ const ColumnsEditContainerWrapper = withDispatch(
} else if ( isAddingColumn ) {
innerBlocks = [
...innerBlocks,
...times( newColumns - previousColumns, () => {
} ),
...times( newColumns - previousColumns, () => {} ),
];
} else {
// The removed column will be the last of the inner blocks.
Expand Down

0 comments on commit 3c570b6

Please sign in to comment.