Remove unused frontend stuff

This commit is contained in:
ta264
2021-07-21 21:50:17 +01:00
parent 7f8dc3d2b4
commit 71a34c7650
20 changed files with 0 additions and 540 deletions
@@ -4,17 +4,14 @@ import AuthorNameLink from 'Author/AuthorNameLink';
import bookEntities from 'Book/bookEntities';
import BookSearchCellConnector from 'Book/BookSearchCellConnector';
import BookTitleLink from 'Book/BookTitleLink';
import EpisodeStatusConnector from 'Book/EpisodeStatusConnector';
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
import TableRowCell from 'Components/Table/Cells/TableRowCell';
import TableSelectCell from 'Components/Table/Cells/TableSelectCell';
import TableRow from 'Components/Table/TableRow';
import styles from './CutoffUnmetRow.css';
function CutoffUnmetRow(props) {
const {
id,
bookFileId,
author,
releaseDate,
titleSlug,
@@ -80,21 +77,6 @@ function CutoffUnmetRow(props) {
);
}
if (name === 'status') {
return (
<TableRowCell
key={name}
className={styles.status}
>
<EpisodeStatusConnector
bookId={id}
bookFileId={bookFileId}
bookEntity={bookEntities.WANTED_CUTOFF_UNMET}
/>
</TableRowCell>
);
}
if (name === 'actions') {
return (
<BookSearchCellConnector