Skip to content

Commit

Permalink
Merge pull request #1174 from RodriSanchez1/fix/warning-onWrite-prop-…
Browse files Browse the repository at this point in the history
…is-required

Fix onWrite prop is required
  • Loading branch information
martinbedouret authored Apr 13, 2022
2 parents a42ce3d + f04c5f0 commit ba25e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Board/Symbol/Symbol.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const propTypes = {
label: PropTypes.oneOfType([PropTypes.string, PropTypes.node]).isRequired,
labelpos: PropTypes.string,
type: PropTypes.string,
onWrite: PropTypes.func.isRequired,
onWrite: PropTypes.func,
intl: PropTypes.object
};

Expand Down

0 comments on commit ba25e37

Please sign in to comment.