Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
fix(client/index): fix arg
Browse files Browse the repository at this point in the history
fix(client/index): fix arg
  • Loading branch information
Metnew committed Sep 4, 2017
1 parent 234c817 commit 21174b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if (process.env.NODE_ENV === 'production') {
const initialState = window.__INITIAL_STATE__ || {}
// NOTE: V8 doesn't optimize `delete`
// delete window.__INITIAL_STATE__
const propsForRoot = configureApp({initialState})
const propsForRoot = configureApp(initialState)
const RootComponent = configureRootComponent(propsForRoot)
render(RootComponent, document.getElementById('app'))

Expand Down

0 comments on commit 21174b6

Please sign in to comment.