1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

[SSG-416] run dotnet tool run dotnet-format

This commit is contained in:
André Bispo
2022-07-13 12:53:54 +01:00
parent 7e6935f21c
commit f432a58e9f
3 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ namespace Bit.App.Controls
protected override void OnPaintSurface(SKPaintSurfaceEventArgs e)
{
base.OnPaintSurface(e);
if(_circle != null)
if (_circle != null)
{
_circle.CalculateCenter(e.Info);
e.Surface.Canvas.Clear();

View File

@@ -103,7 +103,7 @@ namespace Bit.App.Pages
public bool HasCollections { get; set; }
public string ShowTotpCodesAccessibilityText => TotpFilterEnable ?
AppResources.AuthenticationCodesListIsVisibleActivateToShowCipherList
: AppResources.CipherListIsVisibleActivateToShowAuthenticationCodesList;
: AppResources.CipherListIsVisibleActivateToShowAuthenticationCodesList;
public bool ShowNoFolderCipherGroup => NoFolderCiphers != null
&& NoFolderCiphers.Count < NoFolderListSize
&& (Collections is null || !Collections.Any());

View File

@@ -22,7 +22,7 @@ namespace Bit.App.Utilities
public string TotpSec { get; private set; }
public string TotpCodeFormatted { get; private set; }
public double Progress { get; private set; }
public async Task GenerateNewTotpValues()
{
var epoc = CoreHelpers.EpocUtcNow() / 1000;