Skip to content

Commit

Permalink
fix build failing
Browse files Browse the repository at this point in the history
  • Loading branch information
smakosh committed Jun 25, 2019
1 parent 80c4414 commit 82b8d5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gatsby-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import React from 'react'
import 'core-js/modules/es6.set'
import 'core-js/modules/es6.map'
import 'raf/polyfill'
import Apollo from 'Providers/Apollo'
import Apollo from 'providers/Apollo'

export const wrapRootElement = ({ element }) => <Apollo>{element}</Apollo>
2 changes: 1 addition & 1 deletion gatsby-ssr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react'
import Apollo from 'Providers/Apollo'
import Apollo from 'providers/Apollo'

export const wrapRootElement = ({ element }) => <Apollo>{element}</Apollo>
2 changes: 1 addition & 1 deletion src/components/common/Layout/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import { GlobalStyle } from './styles'
import './Layout.css'
import './layout.css'

export default ({ children }) => (
<>
Expand Down

0 comments on commit 82b8d5c

Please sign in to comment.