Skip to content

Commit

Permalink
[SG-598] Removed space from copied totp code (#2046)
Browse files Browse the repository at this point in the history
Removed space from copied totp code

(cherry picked from commit ecd4da0)
  • Loading branch information
andrebispo5 authored and Todd Martin committed Aug 23, 2022
1 parent 6164106 commit c86d4e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public string IconImageSource

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

Expand Down

0 comments on commit c86d4e7

Please sign in to comment.