Dont show bio info on android

This commit is contained in:
Owen
2026-01-21 16:36:35 -08:00
committed by Owen Schwartz
parent 0a7564acb6
commit e17b986628

View File

@@ -143,9 +143,6 @@ function getPlatformPostureData(
}
// Android: Screen lock, Biometric configuration, Hard drive encryption
else if (normalizedPlatform === "android") {
if (fingerprint.biometricsEnabled !== null && fingerprint.biometricsEnabled !== undefined) {
posture.biometricsEnabled = fingerprint.biometricsEnabled;
}
if (fingerprint.diskEncrypted !== null && fingerprint.diskEncrypted !== undefined) {
posture.diskEncrypted = fingerprint.diskEncrypted;
}