diff --git a/app/components/NextPageButton/index.js b/app/components/NextPageButton/index.js index 8877faea06499fd8e8579e6ff91f23c5b89d6325..178c3d006f7ff773d750efc9b28fab8f24d422ec 100644 --- a/app/components/NextPageButton/index.js +++ b/app/components/NextPageButton/index.js @@ -2,7 +2,7 @@ import VisibilitySensor from 'react-visibility-sensor' import { Link } from 'react-router-dom' import React from 'react' import PropTypes from 'prop-types' -import Spinner from '../shared/Spinner' +import { Spinner } from '../shared' import { HasNextPage, NextPageButton } from './style' const NextPageButtonWrapper = props => { diff --git a/app/components/component-chat/src/SuperChatInput/SuperChatInput.jsx b/app/components/component-chat/src/SuperChatInput/SuperChatInput.jsx index 6b3f494e42c3bda509ab0fd88386426f569772b4..68697f73adb7cbc9ab82b19c0b223adea2cf04ab 100644 --- a/app/components/component-chat/src/SuperChatInput/SuperChatInput.jsx +++ b/app/components/component-chat/src/SuperChatInput/SuperChatInput.jsx @@ -7,7 +7,7 @@ import { useMutation } from '@apollo/react-hooks' // import compose from 'recompose/compose'; // import { connect } from 'react-redux'; -import Icon from '../../../shared/Icon' +import { Icon } from '../../../shared' // import { addToastWithTimeout } from 'src/actions/toasts'; // import { openModal } from 'src/actions/modals'; // import { replyToMessage } from 'src/actions/message'; diff --git a/app/components/component-profile/src/Profile.jsx b/app/components/component-profile/src/Profile.jsx index 9ae59a80bdc2ab59d758e7917898cd593dcaa0a4..957788567f94c52a5a6d3681283dffa57616cadd 100644 --- a/app/components/component-profile/src/Profile.jsx +++ b/app/components/component-profile/src/Profile.jsx @@ -6,7 +6,7 @@ import gql from 'graphql-tag' import { useQuery } from '@apollo/react-hooks' import { useDropzone } from 'react-dropzone' -import Spinner from '../../shared/Spinner' +import { Spinner } from '../../shared' import ChangeUsername from './ChangeUsername' import { BigProfileImage } from './ProfileImage' import PageWithHeader from './PageWithHeader'