1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-07 19:13:19 +00:00

[PM-2293] code format

This commit is contained in:
André Bispo
2023-07-27 12:14:26 +01:00
parent 2208ae67fb
commit 0f776074c8
2 changed files with 1 additions and 2 deletions

View File

@@ -221,7 +221,7 @@ namespace Bit.App.Pages
var authResult = await _authService.LogInPasswordlessAsync(Email, _requestAccessCode, _requestId, _requestKeyPair.Item2, response.Key, response.MasterPasswordHash);
await AppHelpers.ResetInvalidUnlockAttemptsAsync();
if(authResult == null && await _stateService.IsAuthenticatedAsync())
if (authResult == null && await _stateService.IsAuthenticatedAsync())
{
_syncService.FullSyncAsync(true).FireAndForget();
LogInSuccessAction?.Invoke();

View File

@@ -230,7 +230,6 @@ namespace Bit.Core.Services
response = await LogInHelperAsync(email, accessCode, Encoding.UTF8.GetString(decKeyHash), null, null, null, new MasterKey(decKey), null, null,
null, null, authRequestId: authRequestId);
}
}
return response;
}