CEC-3980 Remove ICC certificate type (#304)

This commit is contained in:
John Wu
2023-03-28 09:52:11 -07:00
committed by GitHub
parent 8ece05a4b9
commit 7dd4a1c4c0
3 changed files with 5 additions and 62 deletions

View File

@@ -1,6 +1,5 @@
export const CertTypes = {
TBOX: "TBOX",
ICC: "ICC",
Charging: "Charging",
Aftersales: "Aftersales",
};
@@ -12,8 +11,8 @@ export const CertTypeData = [
inputlabel: "VIN",
},
{
value: CertTypes.ICC,
label: "ICC",
value: CertTypes.Charging,
label: "Charging",
inputlabel: "VIN",
},
{
@@ -21,9 +20,4 @@ export const CertTypeData = [
label: "Aftersales",
inputlabel: "Service Tool ID",
},
{
value: CertTypes.Charging,
label: "Charging",
inputlabel: "VIN",
},
];