From 03374ab01380b17f6e793c2d968e2c7dd3b87ba6 Mon Sep 17 00:00:00 2001 From: CarlNation <32103961+CarlNation@users.noreply.github.com> Date: Thu, 9 Nov 2023 08:51:21 -0500 Subject: [PATCH] CSR-1392 prettier --- src/store/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index c6cf89a31..de2e6b45b 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1041,7 +1041,10 @@ export const actions = { context.commit(storeMutations.LOCK_TOKEN, lockToken); // if we already have the token, do not update it. pia does 2 work order submits and the value is not persisted after the first submit - if (state.order.customerPortalLoginToken != null && state.order.customerPortalLoginToken != "00000000-0000-0000-0000-000000000000") { + if ( + state.order.customerPortalLoginToken != null && + state.order.customerPortalLoginToken != "00000000-0000-0000-0000-000000000000" + ) { context.commit(storeMutations.Customer_Portal_Login_Token, customerPortalLoginToken); } },