From e477a106e6cfb951332fea46d00f707cd92144c7 Mon Sep 17 00:00:00 2001 From: Vincent Taverna Date: Wed, 23 Nov 2016 20:13:32 -0500 Subject: [PATCH] Fix head reference from helmet --- html.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html.js b/html.js index e799780..d68260b 100644 --- a/html.js +++ b/html.js @@ -11,7 +11,7 @@ module.exports = React.createClass({ }, render() { const {body, route} = this.props - const title = Helmet.rewind() + const head = Helmet.rewind() const font = let css if (process.env.NODE_ENV === 'production') { @@ -25,7 +25,7 @@ module.exports = React.createClass({ - { title } + { head.title } { font } { css }