diff --git a/app/components/BookBuilder/BookBuilder.jsx b/app/components/BookBuilder/BookBuilder.jsx index 6d9748f2f2112b7adfbcbcb997cf4df8a6d4b819..b5fab82bfbad5f2ae9f8ccdc60ecd96eee954995 100644 --- a/app/components/BookBuilder/BookBuilder.jsx +++ b/app/components/BookBuilder/BookBuilder.jsx @@ -3,7 +3,7 @@ import React from 'react' import { bindActionCreators } from 'redux' import { connect } from 'react-redux' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' import Division from './Division' import BookBuilderModal from './BookBuilderModal' import styles from './styles/bookBuilder.local.scss' diff --git a/app/components/BookBuilder/BookList.jsx b/app/components/BookBuilder/BookList.jsx index dbba33cd724f1d92f6308e7093f84965e2426751..774fbb4497c6b2dc60caa8a75e6442e45a24c5ce 100644 --- a/app/components/BookBuilder/BookList.jsx +++ b/app/components/BookBuilder/BookList.jsx @@ -3,7 +3,8 @@ import { bindActionCreators } from 'redux' import { connect } from 'react-redux' import { Modal } from 'react-bootstrap' import { LinkContainer } from 'react-router-bootstrap' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' + import styles from './styles/bookList.local.scss' export class BookList extends React.Component { diff --git a/app/components/BookBuilder/Chapter.jsx b/app/components/BookBuilder/Chapter.jsx index 72a93717231082419f7aac24f819b082dba0a4bf..6abe04fa6c428937ed702f26387a771b476881da 100644 --- a/app/components/BookBuilder/Chapter.jsx +++ b/app/components/BookBuilder/Chapter.jsx @@ -8,7 +8,7 @@ import { includes, get, map, flow, slice } from 'lodash' import BookBuilderModal from './BookBuilderModal' import ProgressIndicator from './ProgressIndicator' -import TextInput from 'pubsweet-core/app/components/PostsManager/TextInput' +import TextInput from 'pubsweet-component-posts-manager/TextInput' import styles from './styles/bookBuilder.local.scss' const itemTypes = { diff --git a/app/components/BookBuilder/TeamManager/AddMember.jsx b/app/components/BookBuilder/TeamManager/AddMember.jsx index 170c901b2cc1ea6b8c67ab2902ff44aa5c581f9e..adda01194dc1792bae73399ac90250f425663de4 100644 --- a/app/components/BookBuilder/TeamManager/AddMember.jsx +++ b/app/components/BookBuilder/TeamManager/AddMember.jsx @@ -1,7 +1,7 @@ import React from 'react' import { find, union } from 'lodash' -import TextInput from 'pubsweet-core/app/components/PostsManager/TextInput' +import TextInput from 'pubsweet-component-posts-manager/TextInput' import styles from '../styles/teamManager.local.scss' diff --git a/app/components/SimpleEditor/SimpleEditorWrapper.jsx b/app/components/SimpleEditor/SimpleEditorWrapper.jsx index 48f89385ef04dd1eee8c70b57d0fc652daa7cfe7..71caf7e2abc7ffdabb94712722bf77ad8aa214a7 100644 --- a/app/components/SimpleEditor/SimpleEditorWrapper.jsx +++ b/app/components/SimpleEditor/SimpleEditorWrapper.jsx @@ -3,7 +3,7 @@ import React from 'react' import { connect } from 'react-redux' import { bindActionCreators } from 'redux' -import * as Actions from 'pubsweet-core/app/actions' +import * as Actions from 'pubsweet-frontend/src/actions' // import { fragmentsOfCollection } from 'pubsweet-core/app/helpers/Utils' import SimpleEditor from './SimpleEditor'