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.