diff --git a/dangerfile.js b/dangerfile.js
index d5dabda10..b0d265755 100644
--- a/dangerfile.js
+++ b/dangerfile.js
@@ -38,7 +38,7 @@ const checkFiles = () => {
if (!parsedLine) {
return
}
- const { name, values } = parsedLine
+ const { name } = parsedLine
if (
(name.search('margin') > -1 || name.search('padding') > -1) &&
(change.content.search('px') > -1 ||
diff --git a/gatsby-node.js b/gatsby-node.js
index 5f53dc2a8..7fe9887a9 100644
--- a/gatsby-node.js
+++ b/gatsby-node.js
@@ -1,5 +1,4 @@
const path = require('path')
-const { DateTime } = require('luxon')
const csv = require('./src/utilities/csv')
const createSchemaCustomization = require('./src/utilities/schema')
diff --git a/gatsby-ssr.js b/gatsby-ssr.js
index 59fe23b26..e4f1dd379 100644
--- a/gatsby-ssr.js
+++ b/gatsby-ssr.js
@@ -1,5 +1,3 @@
-const React = require('react')
-
exports.onRenderBody = ({ setPostBodyComponents, setBodyAttributes }) => {
setBodyAttributes({
className: 'no-js',
diff --git a/src/components/common/statistic.js b/src/components/common/statistic.js
index dc3345928..fd90db4ee 100644
--- a/src/components/common/statistic.js
+++ b/src/components/common/statistic.js
@@ -22,9 +22,7 @@ const Statistic = ({ title, value, suffix, children, subelement }) => (
- {children} -
+{children}
) export default CrdtParagraph diff --git a/src/components/search/search-result.js b/src/components/search/search-result.js index 35922f0f8..e6f76b9ad 100644 --- a/src/components/search/search-result.js +++ b/src/components/search/search-result.js @@ -26,7 +26,7 @@ const SearchResult = ({ {publishDate && author && ( )} - {author && author} + {author}