From ad5abc413000f49088790e53fbebf967b966ddf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Pantalea=CC=83o?= Date: Thu, 2 Nov 2023 11:40:31 +0100 Subject: [PATCH] Linter autocorrect --- .../Shared/LocalAuthentication/AuthenticationService.swift | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Sources/Shared/LocalAuthentication/AuthenticationService.swift b/Sources/Shared/LocalAuthentication/AuthenticationService.swift index 5e82864166..f0a2a70819 100644 --- a/Sources/Shared/LocalAuthentication/AuthenticationService.swift +++ b/Sources/Shared/LocalAuthentication/AuthenticationService.swift @@ -24,7 +24,12 @@ class AuthenticationService: AuthenticationServiceProtocol { } else if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) { authenticate(policy: .deviceOwnerAuthentication) } else { - Current.Log.error(["Failed to authenticate with biometrics": "User context can't evaluate policy for device ownership"]) + Current.Log + .error( + [ + "Failed to authenticate with biometrics": "User context can't evaluate policy for device ownership", + ] + ) } }