1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-03 17:13:50 +00:00

[SG-598] Removed space from copied totp code (#2046)

Removed space from copied totp code
This commit is contained in:
André Filipe da Silva Bispo
2022-08-23 15:04:17 +01:00
committed by GitHub
parent 525288d804
commit ecd4da08ee

View File

@@ -105,7 +105,7 @@ namespace Bit.App.Pages
public async Task CopyToClipboardAsync()
{
await _clipboardService.CopyTextAsync(TotpCodeFormatted);
await _clipboardService.CopyTextAsync(TotpCodeFormatted?.Replace(" ", string.Empty));
_platformUtilsService.ShowToast("info", null, string.Format(AppResources.ValueHasBeenCopied, AppResources.VerificationCodeTotp));
}