Fixed bailout not submitting after save session error Fixed being able to navigate to any page after bailout submit Fixed query=[object Object] in url on submit WO error
7 lines
111 B
JavaScript
7 lines
111 B
JavaScript
const submitType = Object.freeze({
|
|
SAFELITE: 0,
|
|
TPA: 1,
|
|
BAILOUT: 2
|
|
});
|
|
|
|
export default submitType;
|