Skip to content

Commit

Permalink
corrected the case import: gatsbyjs/gatsby#8205
Browse files Browse the repository at this point in the history
  • Loading branch information
atapas committed Dec 17, 2020
1 parent bb389c2 commit 701f4a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/templates/blog-post.js
@@ -1,7 +1,7 @@
import React from "react";
import { graphql } from "gatsby";
import SEO from "../components/seo"
import Layout from "../components/Layout";
import Layout from "../components/layout";

export default ({ data }) => {
const post = data.markdownRemark
Expand Down
2 changes: 1 addition & 1 deletion src/templates/tagged-post.js
@@ -1,5 +1,5 @@
import React from "react";
import Layout from "../components/Layout";
import Layout from "../components/layout";
import PostList from '../components/PostList';

export default ({data}) => {
Expand Down

0 comments on commit 701f4a8

Please sign in to comment.