diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts index 577579a5..68889f9e 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; } }