From de4568f9f3324f12203e7eb1e160bc03b3cc49eb Mon Sep 17 00:00:00 2001 From: CarlNation Date: Fri, 12 May 2023 14:26:09 -0400 Subject: [PATCH] CSR-1115 --- 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 9e9587131..0abab4727 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -243,7 +243,7 @@ export const mutations = { if (serviceLocationInfo.provider) { state.order.serviceLocation.provider.providerNumber = - serviceLocationInfo.provider.providerNumber; + serviceLocationInfo.provider?.providerNumber; state.order.serviceLocation.provider.address = serviceLocationInfo.provider?.address; state.order.serviceLocation.provider.city = serviceLocationInfo.provider?.city; state.order.serviceLocation.provider.state = serviceLocationInfo.provider?.state;