Skip to content

Commit

Permalink
Merge branch 'feature/pre-release' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmcl committed Aug 1, 2024
2 parents 49d4dd0 + 177c56f commit 5f031c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SideMenuSecurityViewModel: ViewModel, UITableViewDiffableDataSourceHandler
var snapshot = NSDiffableDataSourceSnapshot<Int, AnyHashable>()
var options: [[AnyHashable]] = []

if CurrentDevice.biometricTypeAuthorized() != .unavailable && StorageService.wasBiometricsAccessibleDuringOnboarding() {
if CurrentDevice.biometricTypeAuthorized() != .unavailable && (StorageService.wasBiometricsAccessibleDuringOnboarding() || StorageService.isBiometricEnabled()) {
let biometricType = CurrentDevice.biometricTypeSupported()
let title = biometricType == .faceID ? "Face ID" : "Touch ID"
let image = biometricType == .faceID ? UIImage(systemName: "faceid") : UIImage(systemName: "touchid")
Expand Down

0 comments on commit 5f031c2

Please sign in to comment.