Skip to content

Commit

Permalink
fix #761
Browse files Browse the repository at this point in the history
  • Loading branch information
inc2734 committed Oct 4, 2023
1 parent 56c0e24 commit 1cf96fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blocks/read-more-box/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ export default function ( { attributes, setAttributes, clientId, className } ) {
setAttributes( {
label: label || __( 'Read more', 'snow-monkey-blocks' ),
closeLabel: closeLabel || __( 'Close', 'snow-monkey-blocks' ),
clientId: attributes.clientId || clientId,
clientId,
} );
}, [] );
}, [ clientId ] );

const hasInnerBlocks = useSelect(
( select ) =>
Expand Down

0 comments on commit 1cf96fa

Please sign in to comment.