Rebase fix

This commit is contained in:
Jori Lallo
2017-05-29 18:22:10 -07:00
parent 201f90030c
commit 5a82430553
2 changed files with 3 additions and 2 deletions

View File

@ -32,6 +32,7 @@ const DocumentLink = styled(Link)`
}
`;
// $FlowIssue
const TruncatedMarkdown = styled(Markdown)`
pointer-events: none;
`;

View File

@ -9,7 +9,7 @@ import CollectionsStore from 'stores/CollectionsStore';
import Layout from 'components/Layout';
import CenteredContent from 'components/CenteredContent';
import AtlasPreviewLoading from 'components/AtlasPreviewLoading';
import PreviewLoading from 'components/PreviewLoading';
type Props = {
collections: CollectionsStore,
@ -56,7 +56,7 @@ type State = {
{this.state.redirectUrl && <Redirect to={this.state.redirectUrl} />}
<CenteredContent>
<AtlasPreviewLoading />
<PreviewLoading />
</CenteredContent>
</Layout>
);