CASH-273
This commit is contained in:
parent
06d7edadab
commit
90f8f6f3cd
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ export default {
|
|||
//creating async function as the computed property can not directly handle asynchronous operations or promises.
|
||||
async setMobileLocationQuestions(newValue) {
|
||||
var newZipCode = newValue.addressQuestions.zipCode;
|
||||
if (newValue.addressQuestions.zipCode !== this.zipCode) {
|
||||
if (newZipCode !== this.zipCode) {
|
||||
await getShopProviderData(newZipCode).then((result) => {
|
||||
if (this.isServiceableMobile) {
|
||||
this.shopProviderData = result.data;
|
||||
|
|
|
|||
Loading…
Reference in a new issue