Skip to content

Commit c420aad

Browse files
authored
Merge pull request #185 from wpengine/blog-errors
[fix]: Blog errors
2 parents 7e8c69a + bc59dd4 commit c420aad

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/_app.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import blocks from "@/wp-blocks";
99
export default function MyApp({ Component, pageProps }) {
1010
return (
1111
<FaustProvider pageProps={pageProps}>
12-
<WordPressBlocksProvider config={{ blocks, theme: undefined }}>
12+
{/* eslint-disable-next-line unicorn/no-null */}
13+
<WordPressBlocksProvider config={{ blocks, theme: null }}>
1314
<Layout>
1415
<Component {...pageProps} />
1516
</Layout>

0 commit comments

Comments
 (0)