Skip to content

Commit

Permalink
Remove deprecated isLarge prop from Button
Browse files Browse the repository at this point in the history
The isLarge prop has been removed from Gutenberg Button component. Leaving the prop in place results in console error so should be removed.

WordPress/gutenberg#23239
  • Loading branch information
aaronrobertshaw committed Jul 30, 2020
1 parent 305e240 commit 3b000a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/blocks/opentable/restaurant-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function RestaurantPicker( props ) {
{ props.onSubmit ? (
<form onSubmit={ onSubmit }>
{ formInput }
<Button isSecondary isLarge type="submit">
<Button isSecondary type="submit">
{ __( 'Embed', 'jetpack' ) }
</Button>
</form>
Expand Down

0 comments on commit 3b000a6

Please sign in to comment.