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.
This commit is contained in:
CarlNation 2024-06-04 09:28:51 -04:00
parent 8273329185
commit 7ccb55d1b8

View file

@ -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);
},