diff --git a/client/app/scripts/utils/router-utils.js b/client/app/scripts/utils/router-utils.js index b4d1c4536..ce35ca468 100644 --- a/client/app/scripts/utils/router-utils.js +++ b/client/app/scripts/utils/router-utils.js @@ -119,7 +119,7 @@ export function getRouter(dispatch, initialState) { } else { const mergedState = Object.assign(initialState, parsedState); // push storage state to URL - window.location.hash = `!/state/${mergedState}`; + window.location.hash = `!/state/${JSON.stringify(mergedState)}`; dispatch(route(mergedState)); } } else {