This commit is contained in:
Chris Redelinghuys 2025-02-21 14:44:08 -05:00
parent 06d7edadab
commit 90f8f6f3cd

View file

@ -474,7 +474,7 @@ export default {
//creating async function as the computed property can not directly handle asynchronous operations or promises. //creating async function as the computed property can not directly handle asynchronous operations or promises.
async setMobileLocationQuestions(newValue) { async setMobileLocationQuestions(newValue) {
var newZipCode = newValue.addressQuestions.zipCode; var newZipCode = newValue.addressQuestions.zipCode;
if (newValue.addressQuestions.zipCode !== this.zipCode) { if (newZipCode !== this.zipCode) {
await getShopProviderData(newZipCode).then((result) => { await getShopProviderData(newZipCode).then((result) => {
if (this.isServiceableMobile) { if (this.isServiceableMobile) {
this.shopProviderData = result.data; this.shopProviderData = result.data;