From 89d6a4b346d5be7685c94a557736b98bd4ee27a3 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 12 Sep 2023 01:26:16 +0200 Subject: [PATCH] Fix typo --- agent/systemauth/biometrics/touchid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/systemauth/biometrics/touchid.go b/agent/systemauth/biometrics/touchid.go index 30c8df3..59077b7 100644 --- a/agent/systemauth/biometrics/touchid.go +++ b/agent/systemauth/biometrics/touchid.go @@ -3,7 +3,7 @@ package biometrics func CheckBiometrics(approvalType Approval) bool { - ok, err := touchid.Authenticate(approvalType.String() + ok, err := touchid.Authenticate(approvalType.String()) if err != nil { log.Fatal(err) }