diff --git a/apps/web/src/app/tools/send/send-access-text.component.ts b/apps/web/src/app/tools/send/send-access-text.component.ts index 755048f2bc..0843c7b63a 100644 --- a/apps/web/src/app/tools/send/send-access-text.component.ts +++ b/apps/web/src/app/tools/send/send-access-text.component.ts @@ -55,5 +55,8 @@ export class SendAccessTextComponent { protected toggleText() { this.showText = !this.showText; + this.formGroup.controls.sendText.patchValue( + this.showText ? this.send.text.text : this.send.text.maskedText + ); } }