Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ryelle committed Dec 17, 2024
1 parent 818abe5 commit ea4c1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu-plugins/blocks/modal/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function Edit( {
const options = styles.map( ( item ) => ( { label: item.label, value: item.name } ) );
// Add the same options with the `is-small` modifier.
styles.forEach( ( item ) => {
options.push( { label: `${item.label} (small)`, value: `${item.name} is-small` } );
options.push( { label: `${ item.label } (small)`, value: `${ item.name } is-small` } );
} );
setButtonStyleOptions( options );
}, [] );
Expand Down

0 comments on commit ea4c1c5

Please sign in to comment.