diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index b8c851cd..0a67920b 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -21,12 +21,12 @@ "Failed to update the pickup store": "Failed to update the pickup store", "Failed to update the shipping addess": "Failed to update the shipping addess", "Fetching address": "Fetching address", + "Inventory not available at any nearby store, please select alternate delivery method": "Inventory not available at any nearby store, please select alternate delivery method", "Last name": "Last name", "Login": "Login", "Logout": "Logout", "mi": "mi", "Nearby stores": "Nearby stores", - "No nearby stores found": "No nearby stores found", "OMS": "OMS", "Order ID": "Order ID", "Order cancelled successfully": "Order cancelled successfully", diff --git a/src/views/PickupLocationModal.vue b/src/views/PickupLocationModal.vue index 665d5675..48eabf15 100644 --- a/src/views/PickupLocationModal.vue +++ b/src/views/PickupLocationModal.vue @@ -37,7 +37,7 @@ - {{ $t("No nearby stores found") }} + {{ $t("Inventory not available at any nearby store, please select alternate delivery method") }}
@@ -125,7 +125,7 @@ export default defineComponent({ async getStores(point?: string) { let payload = { "viewSize": process.env.VUE_APP_VIEW_SIZE, - "filters": ["storeType: RETAIL_STORE"] + "filters": ["storeType: RETAIL_STORE", "pickup_pref: true"] } as any if (point) {