Skip to content

Commit

Permalink
Require to PIN to disable auth if PIN is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
praveenperera committed Dec 15, 2024
1 parent 5669c7e commit a858517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Cove/HomeScreens/SettingsScreen.swift
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ struct SettingsScreen: View {

case .disableAuth:
LockView(
lockType: app.authType,
lockType: app.authType == .biometric ? .biometric : .pin,
isPinCorrect: checkPin,
onUnlock: { _ in
app.dispatch(action: .disableAuth)
Expand Down

0 comments on commit a858517

Please sign in to comment.