Skip to content

Commit bd24d6c

Browse files
authored
Merge pull request #5788 from vuestorefront/#4682-fix/incorrect-load-of-default-address-in-checkout
fix: load default address in checkout
2 parents ce23de4 + 5de7ef5 commit bd24d6c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4040
- Fix Original Price Calculation typo - @akucharczyk / @lukaszjedrasik (#5472)
4141
- Purge loader works properly with dynamic config reload - @Fifciu
4242
- Multi-tab cart-sync in multi-store environment - @cewald (#5711, #5732)
43+
- Incorrect load of default address in checkout - @lukaszjedrasik ([#4682](https://github.com/vuestorefront/vue-storefront/issues/4682))
4344

4445
### Changed / Improved
4546

core/modules/checkout/components/Shipping.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ export const Shipping = {
6262
shipToMyAddress: {
6363
handler () {
6464
this.useMyAddress()
65-
},
66-
immediate: true
67-
}
65+
}
66+
},
67+
'$route.hash': 'useMyAddress'
6868
},
6969
mounted () {
7070
this.checkDefaultShippingAddress()

0 commit comments

Comments
 (0)