From 4373ff0614445cbdd0c506f17014fd61e627a982 Mon Sep 17 00:00:00 2001 From: slice Date: Wed, 29 May 2019 23:42:09 -0700 Subject: Remove isRequired from Glitch ReplyIndicator status This can be null under normal circumstances, which isRequired doesn't like. --- .../flavours/glitch/features/compose/components/reply_indicator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/javascript/flavours') diff --git a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js index 4a638ff51..fbb950516 100644 --- a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js +++ b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.js @@ -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, }; -- cgit