Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set `totals` in products in cart always in reactive way - @psmyrek (#4079)
- Fix sync cart between tabs - @Michal-Dziedzinski (#3838)
- Add currentRoute to url module and return cached requests - @gibkigonzo (pr#4077, issue#4066)
- Disable overriding `route` state in __INITIAL_STATE__ - @gibkigonzo (pr#4095)
- Fix gtm order placement event when user was guest - @Michal-Dziedzinski (#4064)

## [1.11.1] - 2020.02.05
Expand Down
2 changes: 1 addition & 1 deletion core/client-entry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const invokeClientEntry = async () => {
if (window.__INITIAL_STATE__) {
// skip fields that were set by createApp
const initialState = coreHooksExecutors.beforeHydrated(
omit(window.__INITIAL_STATE__, ['storeView', 'config', 'version'])
omit(window.__INITIAL_STATE__, ['storeView', 'config', 'version', 'route'])
)
store.replaceState(Object.assign({}, store.state, initialState, { config: globalConfig }))
}
Expand Down