From 029bac4fd9e23f60dedac59ed57c5a5cc5d5b299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matija=20Marohni=C4=87?= Date: Wed, 9 Aug 2017 17:26:45 +0200 Subject: [PATCH] Remove unnecessary lookup in example with emotion (#2731) --- examples/with-emotion/pages/_document.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-emotion/pages/_document.js b/examples/with-emotion/pages/_document.js index 8f99ebcb..dc6efc11 100644 --- a/examples/with-emotion/pages/_document.js +++ b/examples/with-emotion/pages/_document.js @@ -16,7 +16,7 @@ export default class MyDocument extends Document { super(props) const { __NEXT_DATA__, ids } = props if (ids) { - __NEXT_DATA__.ids = this.props.ids + __NEXT_DATA__.ids = ids } }