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.
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;