From d2af0c6a03209fc44ea644e4f4b4e5479e656aa2 Mon Sep 17 00:00:00 2001 From: Rommel Sunga Date: Fri, 11 Mar 2016 10:25:59 -0800 Subject: [PATCH] Fixed DOMContainer typo. --- client/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/index.js b/client/index.js index 0925a6c948..e5e7028aed 100644 --- a/client/index.js +++ b/client/index.js @@ -16,7 +16,7 @@ import sagas from './sagas'; import render from '../common/app/utils/render'; const log = debug('fcc:client'); -const DOMContianer = document.getElementById('fcc'); +const DOMContainer = document.getElementById('fcc'); const initialState = window.__fcc__.data; const serviceOptions = { xhrPath: '/services' }; @@ -61,7 +61,7 @@ app$({ log('rendering'); return render( provideStore(React.createElement(Router, props), store), - DOMContianer + DOMContainer ); }) .subscribe(