From ecd4da08ee068eaa1a0444db12500db5d6a82d3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Filipe=20da=20Silva=20Bispo?= Date: Tue, 23 Aug 2022 15:04:17 +0100 Subject: [PATCH] [SG-598] Removed space from copied totp code (#2046) Removed space from copied totp code --- src/App/Pages/Vault/GroupingsPage/GroupingsPageTOTPListItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPageTOTPListItem.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPageTOTPListItem.cs index 79149130e..7a49ef857 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPageTOTPListItem.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPageTOTPListItem.cs @@ -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)); }