Unverified Commit 1aca3c0f authored by picklesrus's avatar picklesrus Committed by GitHub

Merge pull request #4768 from picklesrus/fix-prop-warning

Fix prop type. muteStepContent is an array not a string.
parents e608f2c5 760082d2
...@@ -128,7 +128,7 @@ MuteModal.propTypes = { ...@@ -128,7 +128,7 @@ MuteModal.propTypes = {
muteModalMessages: PropTypes.shape({ muteModalMessages: PropTypes.shape({
commentType: PropTypes.string, commentType: PropTypes.string,
muteStepHeader: PropTypes.string, muteStepHeader: PropTypes.string,
muteStepContent: PropTypes.string muteStepContent: PropTypes.array
}), }),
onRequestClose: PropTypes.func, onRequestClose: PropTypes.func,
timeMuted: PropTypes.string timeMuted: PropTypes.string
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment