Removed from props override validation because it already happens in constructor

This commit is contained in:
Alexander Cerutti
2021-10-17 20:06:06 +02:00
parent f17daa0a45
commit 510fd947a0

View File

@@ -85,11 +85,7 @@ export default class PKPass extends Bundle {
certificates = source.certificates;
}
return new PKPass(
buffers,
certificates,
Schemas.validate(Schemas.OverridablePassProps, props),
);
return new PKPass(buffers, certificates, props);
}
/**