Merge pull request #7501 from EMChamp/fix/index-typo2

Fixed variable name typo.
This commit is contained in:
Rex Schrader
2016-03-11 22:18:13 -08:00

View File

@ -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(