From ecd4f7cd1095fcadb88db1f9b04bcff5197cb9d2 Mon Sep 17 00:00:00 2001 From: Andrew Pietila Date: Sat, 8 Jul 2023 09:32:40 -0500 Subject: [PATCH] Fix build errors. --- .../features/compose/components/quote_indicator.jsx | 10 ++++++---- .../features/compose/components/reply_indicator.jsx | 3 +-- 2 files changed, 7 insertions(+), 6 deletions(-) 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 75bd96a15..52c432a7f 100644 --- a/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx +++ b/app/javascript/flavours/glitch/features/compose/components/quote_indicator.jsx @@ -1,15 +1,17 @@ // Package imports. import PropTypes from 'prop-types'; import React from 'react'; -import ImmutablePropTypes from 'react-immutable-proptypes'; + import { defineMessages, injectIntl } from 'react-intl'; + +import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; // Components. -import AccountContainer from 'flavours/glitch/containers/account_container'; -import Icon from 'flavours/glitch/components/icon'; -import IconButton from 'flavours/glitch/components/icon_button'; import AttachmentList from 'flavours/glitch/components/attachment_list'; +import { Icon } from "flavours/glitch/components/icon"; +import { IconButton } from "flavours/glitch/components/icon_button"; +import AccountContainer from 'flavours/glitch/containers/account_container'; // Messages. const messages = defineMessages({ diff --git a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.jsx b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.jsx index 177521da7..47c9b81d7 100644 --- a/app/javascript/flavours/glitch/features/compose/components/reply_indicator.jsx +++ b/app/javascript/flavours/glitch/features/compose/components/reply_indicator.jsx @@ -7,9 +7,8 @@ import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePureComponent from 'react-immutable-pure-component'; // Components. -import AccountContainer from 'flavours/glitch/containers/account_container'; -import Icon from 'flavours/glitch/components/icon'; import AttachmentList from 'flavours/glitch/components/attachment_list'; +import { Icon } from "flavours/glitch/components/icon"; import { IconButton } from 'flavours/glitch/components/icon_button'; import AccountContainer from 'flavours/glitch/containers/account_container'; // Messages.