Skip to content

Commit

Permalink
chore(examples): fix with-aphrodite exapmle (#42078)
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Oct 28, 2022
1 parent d07ae34 commit e2a98cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-aphrodite/pages/_document.js
Expand Up @@ -5,7 +5,7 @@ class MyDocument extends Document {
static async getInitialProps({ renderPage }) {
const { html, css } = StyleSheetServer.renderStatic(() => renderPage())
const ids = css.renderedClassNames
return { ...html, css, ids }
return { ...(await html), css, ids }
}

render() {
Expand Down

0 comments on commit e2a98cd

Please sign in to comment.