Skip to content

Commit

Permalink
T 1404636: Fix pipeline issue
Browse files Browse the repository at this point in the history
  • Loading branch information
amrutakamat-mindbody committed Mar 3, 2025
1 parent 9182600 commit 7af85ec
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,7 @@ public final class KeychainHybridKeyProvider: HybridKeyProvider {
guard let errorCode = error.flatMap({ LAError.Code(rawValue: $0.code) }) else {
return false
}
if #available(OSX 10.13, iOS 11, *) {
return errorCode != .biometryNotAvailable
}
return errorCode != .touchIDNotAvailable
return errorCode != .biometryNotAvailable
}
#endif
return false
Expand Down

0 comments on commit 7af85ec

Please sign in to comment.