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)); }