Skip to content

Commit

Permalink
Remove no longer used hasNegativeRange prop.
Browse files Browse the repository at this point in the history
  • Loading branch information
afercia committed Sep 17, 2024
1 parent cff1bad commit ad55802
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -464,13 +464,11 @@ function ShadowPopover( { shadowObj, onChange } ) {
<ShadowInputControl
label={ __( 'X Position' ) }
value={ shadowObj.x }
hasNegativeRange
onChange={ ( value ) => onShadowChange( 'x', value ) }
/>
<ShadowInputControl
label={ __( 'Y Position' ) }
value={ shadowObj.y }
hasNegativeRange
onChange={ ( value ) => onShadowChange( 'y', value ) }
/>
<ShadowInputControl
Expand All @@ -481,7 +479,6 @@ function ShadowPopover( { shadowObj, onChange } ) {
<ShadowInputControl
label={ __( 'Spread' ) }
value={ shadowObj.spread }
hasNegativeRange
onChange={ ( value ) => onShadowChange( 'spread', value ) }
/>
</Grid>
Expand Down

0 comments on commit ad55802

Please sign in to comment.