Skip to content

Commit

Permalink
Fix use of InnerBlocks.Content
Browse files Browse the repository at this point in the history
It looks like we were using it wrong, in a way that worked before
WordPress/gutenberg#26031 but breaks after.
  • Loading branch information
anomiex committed Nov 10, 2021
1 parent 084233d commit 388749d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ export default [

return false;
},
save: InnerBlocks.Content,
save: () => <InnerBlocks.Content />,
},
];
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const settings = {
},
attributes: defaultAttributes,
edit,
save: InnerBlocks.Content,
save: () => <InnerBlocks.Content />,
variations,
category: 'grow',
transforms,
Expand Down

0 comments on commit 388749d

Please sign in to comment.