DigitalConsumer.FixMyGlass/src/constants/external-parameters.js
CarlNation ee79be8396 CSR-2253
CSR-2253 if we're loading a session and we do not have a provider number yet, then set isInsurance to null so that
a service package is not selected by default on the quote page.
2024-10-15 09:36:30 -04:00

6 lines
124 B
JavaScript

const externalParameterStatus = {
NOT_SET: null,
ACTIVE: 1,
INACTIVE: 0,
};
export { externalParameterStatus };