From c13cde358955cbb911c3b76902ea1b2242ef9e6b Mon Sep 17 00:00:00 2001 From: Kouhai Date: Fri, 21 Apr 2023 23:05:53 -0700 Subject: [PATCH] th: fix build --- .../glitch/features/compose/components/quote_indicator.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx b/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx index 4fbe9e9085..75bd96a150 100644 --- a/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx +++ b/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx @@ -20,7 +20,6 @@ const messages = defineMessages({ }); -export default @injectIntl class QuoteIndicator extends ImmutablePureComponent { static propTypes = { @@ -84,3 +83,5 @@ class QuoteIndicator extends ImmutablePureComponent { } } + +export default injectIntl(QuoteIndicator)