From a7f159f491484b98e0744efc6afa022943b0c927 Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Tue, 8 Oct 2024 13:28:34 +0200 Subject: [PATCH] Update comment --- src/libs/Authentication.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/Authentication.ts b/src/libs/Authentication.ts index 1298d3f1405d..34630af81733 100644 --- a/src/libs/Authentication.ts +++ b/src/libs/Authentication.ts @@ -106,7 +106,7 @@ function reauthenticate(command = ''): Promise { NetworkStore.setIsAuthenticating(false); }) .catch((error) => { - // In case the atuhentication call throws error, we need to sign user out as most likely they are missing credentials + // In case the authenticate call throws error, we need to sign user out as most likely they are missing credentials NetworkStore.setIsAuthenticating(false); Log.hmmm('Redirecting to Sign In because we failed to reauthenticate', {error}); redirectToSignIn('passwordForm.error.fallback');