CSR-963 experiment settings compare as strings

This commit is contained in:
CarlNation 2022-12-13 15:52:31 -05:00
parent e3f7f2adfd
commit c09c6da283

View file

@ -69,7 +69,7 @@ export async function skipVinLookup() {
return (
store.getters.damage.isRepair ||
isVinOptionalVehicle ||
experimentMixin.methods.hasSettingEqualTo(experimentSettings.SUPPRESS_VIN_CAPTURE, true)
experimentMixin.methods.hasSettingEqualTo(experimentSettings.SUPPRESS_VIN_CAPTURE, "true")
);
}
@ -83,7 +83,7 @@ export async function skipVinLookupNotRepair() {
(isVinOptionalVehicle ||
experimentMixin.methods.hasSettingEqualTo(
experimentSettings.SUPPRESS_VIN_CAPTURE,
true
"true"
))
);
}