diff --git a/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift b/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift index 0b1d50d8..f0d3b0a7 100644 --- a/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift +++ b/ui/BankingiOSApp/BankingiOSApp/ui/dialogs/ProtectAppSettingsDialog.swift @@ -147,11 +147,13 @@ struct ProtectAppSettingsDialog: View { isPasswordSelected = false isNoAppProtectionSelected = false - if authenticationService.needsFaceIDToUnlockApp { - isFaceIDSelected = true - } - else if authenticationService.needsTouchIDToUnlockApp { - isTouchIDSelected = true + if type == .biometric { + if authenticationService.needsFaceIDToUnlockApp { + isFaceIDSelected = true + } + else if authenticationService.needsTouchIDToUnlockApp { + isTouchIDSelected = true + } } else if type == .password { isPasswordSelected = true