remove comment and change duration from 2 to 0

This commit is contained in:
Matthew Fosse 2024-04-18 12:15:16 -07:00
parent 08c992654c
commit 6a93877bbb

View file

@ -18,8 +18,7 @@ class BiometricAuth {
bool canAuthenticate;
try {
canAuthenticate = await _flutterLocalAuthenticationPlugin.canAuthenticate();
// Setup TouchID Allowable Reuse duration
await _flutterLocalAuthenticationPlugin.setTouchIDAuthenticationAllowableReuseDuration(2);
await _flutterLocalAuthenticationPlugin.setTouchIDAuthenticationAllowableReuseDuration(0);
} catch (error) {
print("Exception checking support. $error");
canAuthenticate = false;