From fa68ea249ca87f15a9b39a755cb424d7d646a6eb Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Mon, 8 Feb 2021 10:16:17 -0500 Subject: [PATCH] Fix lint error (s) => arrow function parens banned --- src/app/send/send.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts index 577579a51af..68889f9e0e6 100644 --- a/src/app/send/send.component.ts +++ b/src/app/send/send.component.ts @@ -53,6 +53,6 @@ export class SendComponent extends BaseSendComponent implements OnInit { } get selectedSendType() { - return this.sends.find((s) => s.id === this.sendId).type; + return this.sends.find(s => s.id === this.sendId).type; } }