Skip to content

Commit fc96aa6

Browse files
Laurie BarthLaurie Barth
authored andcommitted
missed fullTheme variable in refactor commit
1 parent a5bf1a8 commit fc96aa6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/gatsby-plugin-theme-ui/src/provider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ const Root = ({ children }) => {
1717
}
1818
)
1919

20-
themeWrapper = merge(themeWithPrism, theme)
20+
const fullTheme = merge(themeWithPrism, theme)
2121

2222
return (
23-
<ThemeProvider theme={themeWrapper} components={components}>
23+
<ThemeProvider theme={fullTheme} components={components}>
2424
{children}
2525
</ThemeProvider>
2626
)

0 commit comments

Comments
 (0)