Make linter happy (#7043)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith 2023-11-30 17:20:23 +01:00 committed by GitHub
parent a79b4e182f
commit 1c43f77d51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ export class SendAccessTextComponent {
protected toggleText() {
this.showText = !this.showText;
this.formGroup.controls.sendText.patchValue(
this.showText ? this.send.text.text : this.send.text.maskedText
this.showText ? this.send.text.text : this.send.text.maskedText,
);
}
}