From 6a93877bbbf5bddd3aaf21b55cfebf08532c337c Mon Sep 17 00:00:00 2001 From: Matthew Fosse Date: Thu, 18 Apr 2024 12:15:16 -0700 Subject: [PATCH] remove comment and change duration from 2 to 0 --- lib/entities/biometric_auth.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/entities/biometric_auth.dart b/lib/entities/biometric_auth.dart index 3aa34c4b2..37dba87bc 100644 --- a/lib/entities/biometric_auth.dart +++ b/lib/entities/biometric_auth.dart @@ -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;