Skip to content

Commit

Permalink
fix console
Browse files Browse the repository at this point in the history
  • Loading branch information
shimotmk committed Mar 3, 2025
1 parent 4c7e451 commit b1c77ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/block-library/src/audio/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ function AudioEdit( {
__nextHasNoMarginBottom
label={ __( 'Autoplay' ) }
onChange={ toggleAttribute( 'autoplay' ) }
checked={ autoplay }
checked={ !! autoplay }
help={ getAutoplayHelp }
/>
</ToolsPanelItem>
Expand All @@ -208,7 +208,7 @@ function AudioEdit( {
__nextHasNoMarginBottom
label={ __( 'Loop' ) }
onChange={ toggleAttribute( 'loop' ) }
checked={ loop }
checked={ !! loop }
/>
</ToolsPanelItem>
<ToolsPanelItem
Expand Down

0 comments on commit b1c77ea

Please sign in to comment.