Skip to content

Commit 8873660

Browse files
authored
Merge pull request #3928 from andrzejewsky/bugfix/3923
Invalidating token
2 parents 149df72 + 8d0bbdb commit 8873660

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4343
- Fixed error page display with enabled multistore - @gibkigonzo (#3890)
4444
- Fixed edit shipping address in my account - @gibkigonzo (#3921)
4545
- Fetch cms_block content in serverPrefetch method - @gibkigonzo (#3910)
46+
- Fixed saving invalidated user token - @andrzejewsky (#3923)
4647
- Keep category products objects on ssr - @gibkigonzo (#3924)
4748
- product breadcrumbs - check if current category is not highest one - @gibkigonzo (#3933)
4849

core/modules/user/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const UserModule: StorefrontModule = async function ({store}) {
2626
})
2727
})
2828

29-
await store.dispatch('user/startSession')
29+
store.dispatch('user/startSession')
3030
}
3131

3232
store.subscribe((mutation, state) => {

0 commit comments

Comments
 (0)