Remove isRequired from Glitch ReplyIndicator status

This can be null under normal circumstances, which isRequired doesn't
like.
remotes/1698178055505214576/signup-info-prompt
slice 2019-05-29 23:42:09 -07:00 committed by ThibG
parent 07d4ecfe5e
commit e04724296b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ export default @injectIntl
class ReplyIndicator extends ImmutablePureComponent {
static propTypes = {
status: ImmutablePropTypes.map.isRequired,
status: ImmutablePropTypes.map,
intl: PropTypes.object.isRequired,
onCancel: PropTypes.func,
};