Skip to content

Commit

Permalink
docs(examples/next): fix case insensitive import
Browse files Browse the repository at this point in the history
Hey @lachlanjc, I noticed that Next.js example was failing on this case-insensitive import while reviewing #2085 :)
  • Loading branch information
hasparus authored Jan 21, 2022
1 parent 65947db commit ab87633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/next/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @jsxImportSource theme-ui */
import { ThemeProvider } from 'theme-ui'

import Header from '../components/header'
import Header from '../components/Header'
import { theme } from '../lib/theme'
import type { AppProps } from 'next/app'

Expand Down

0 comments on commit ab87633

Please sign in to comment.