diff --git a/.eslintrc b/.eslintrc
index 9b509975..00a1c024 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -11,6 +11,7 @@
"flowtype"
],
"rules": {
+ "no-unused-vars": 2,
// // Bring back after we remove CSS Modules 100%
// "import/order": "warn",
// Prettier automatically uses the least amount of parens possible, so this
diff --git a/frontend/components/Collection/Collection.js b/frontend/components/Collection/Collection.js
index 4d3f7b6a..c1e4fe92 100644
--- a/frontend/components/Collection/Collection.js
+++ b/frontend/components/Collection/Collection.js
@@ -2,12 +2,9 @@
import React from 'react';
import { observer } from 'mobx-react';
import { Link } from 'react-router-dom';
-
-import DocumentLink from './components/DocumentLink';
+import moment from 'moment';
import styles from './Collection.scss';
-// import classNames from 'classnames/bind';
-// const cx = classNames.bind(styles);
@observer class Collection extends React.Component {
static propTypes = {
@@ -24,7 +21,18 @@ import styles from './Collection.scss';
{data.recentDocuments.length > 0
? data.recentDocuments.map(document => {
- return
- {collection.description} --