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

@@ -24,7 +24,7 @@ const getCertsTypes = (providers) => {
if (providers.length === 0) return [];
if ((providers[0] === Providers.MAGNA) || (providers[0] === Providers.FISKER_QA)) {
return CertTypeData.filter((item) => {
return (item.label === CertTypes.TBOX || item.label === CertTypes.ICC);
return (item.label === CertTypes.TBOX);
})
}
return CertTypeData;