From 7ccb55d1b8185df40a4f60b9438b31e7acd595cd Mon Sep 17 00:00:00 2001 From: CarlNation Date: Tue, 4 Jun 2024 09:28:51 -0400 Subject: [PATCH] CSR-2091 CSR-2091 delete cookie on work order submission. if hasdelayedclaimregistration was true, then it caused the vehicle dropdowns to be disabled. better to just remove the cookie after successful submission. --- src/store/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/store/index.js b/src/store/index.js index 1d8e08d6e..ada183f7a 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2670,6 +2670,9 @@ export const actions = { // clear vuex context.commit(storeMutations.RESET_STATE); + // delete cookie + deleteFunnelCookie(); + //restore user's experiments context.commit(storeMutations.UPDATE_EXPERIMENTS, experiments); },