Skip to content

Commit

Permalink
chore: remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jul 29, 2020
1 parent 1f7b2d5 commit 89c3d78
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/templates/GuideTemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import styles from './GuideTemplate.module.scss';

const GuideTemplate = ({ data }) => {
const { mdx } = data;
const { frontmatter, body, fields } = mdx;
const { frontmatter, body } = mdx;
const { title, description, duration } = frontmatter;

return (
Expand Down Expand Up @@ -67,9 +67,6 @@ export const pageQuery = graphql`
title
description
}
fields {
gitAuthorTime(formatString: "MMMM DD, YYYY")
}
...RelatedContent_page
}
Expand Down

0 comments on commit 89c3d78

Please sign in to comment.