From 4b0c4755f177f892ccb60cbd798de05b41f21e74 Mon Sep 17 00:00:00 2001 From: Bill Richardson Date: Tue, 5 Dec 2023 10:10:33 -0500 Subject: [PATCH] throw error on pricing failure --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index c15e0bb9..2977af52 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -918,7 +918,7 @@ export const useMainStore = defineStore({ endpoint: `${endpoints.GetInsurancePriceOrderItems.url}?${queryString}` }).catch((error) => { console.error(error); - return []; + throw error; }); if (response.data?.lineItems) {