diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift index f0d3b0a7..3a4a2049 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift @@ -148,10 +148,10 @@ struct ProtectAppSettingsDialog: View { isNoAppProtectionSelected = false if type == .biometric { - if authenticationService.needsFaceIDToUnlockApp { + if authenticationService.deviceSupportsFaceID { isFaceIDSelected = true } - else if authenticationService.needsTouchIDToUnlockApp { + else if authenticationService.deviceSupportsTouchID { isTouchIDSelected = true } }