about summary refs log tree commit diff
diff options
context:
space:
mode:
authorslice <ryaneft@gmail.com>2019-05-29 23:42:09 -0700
committerThibG <thib@sitedethib.com>2019-05-30 09:04:00 +0200
commite04724296b06bc08fa2ced9616dc7d0a5c89e3ca (patch)
treea1772fe6a647574fc62ef9b79a893cdf12894223
parent07d4ecfe5e7bff09a6fbe492f477cbe2cb4a1c25 (diff)
Remove isRequired from Glitch ReplyIndicator status
This can be null under normal circumstances, which isRequired doesn't
like.
-rw-r--r--app/javascript/flavours/glitch/features/compose/components/reply_indicator.js2
1 files changed, 1 insertions, 1 deletions
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 f96ea4c5e..9d5b65a40 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,
   };