Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
gigitux committed May 10, 2024
1 parent 2a1ef53 commit 6f6f6f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/block-editor/src/components/block-popover/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,18 +160,18 @@ const PublicBlockPopover = ( {
children,
...props
} ) => (
<BlockPopover
<PrivateBlockPopover
{ ...props }
bottomClientId={ bottomClientId }
clientId={ clientId }
__unstableContentRef={ undefined }
__unstablePopoverSlot={ undefined }
>
{ children }
</BlockPopover>
</PrivateBlockPopover>
);

/**
* @see https://github.com/WordPress/gutenberg/blob/HEAD/packages/block-editor/src/components/block-popover/README.md
*/
export default forwardRef( PublicBlockPopover );
export default PublicBlockPopover;

0 comments on commit 6f6f6f9

Please sign in to comment.