File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
45
45
- ESLint warnings caused by the double import - @lukaszjedrasik
46
46
- Fix Order History Pagination - @AishwaryShrivastav / @lukaszjedrasik ([ #4599 ] ( https://github.com/vuestorefront/vue-storefront/issues/4599 ) )
47
47
- Fix: Updating URL's params/query params with proper child SKU if options changes - @lukaszjedrasik ([ #5981 ] ( https://github.com/vuestorefront/vue-storefront/issues/5981 ) )
48
+ - Fix: Passing ` newToken: null ` as a payload inside ` clearCurrentUser ` action - @lukaszjedrasik ([ #5565 ] ( https://github.com/vuestorefront/vue-storefront/issues/5565 ) )
48
49
49
50
### Changed / Improved
50
51
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ const actions: ActionTree<UserState, RootState> = {
221
221
}
222
222
} ,
223
223
clearCurrentUser ( { commit, dispatch } ) {
224
- commit ( types . USER_TOKEN_CHANGED , '' )
224
+ commit ( types . USER_TOKEN_CHANGED , { newToken : null } )
225
225
commit ( types . USER_GROUP_TOKEN_CHANGED , '' )
226
226
commit ( types . USER_GROUP_CHANGED , null )
227
227
commit ( types . USER_INFO_LOADED , null )
You can’t perform that action at this time.
0 commit comments