From 689f2c35354d7f04b1fba97c05f318e33f651742 Mon Sep 17 00:00:00 2001 From: addison Date: Thu, 18 Feb 2021 13:06:21 -0500 Subject: [PATCH] lint fixes --- src/app/send/send.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts index 48fd9d80a2..2a683428b7 100644 --- a/src/app/send/send.component.ts +++ b/src/app/send/send.component.ts @@ -115,14 +115,14 @@ export class SendComponent extends BaseSendComponent implements OnInit, OnDestro const menu = new remote.Menu(); menu.append(new remote.MenuItem({ label: this.i18nService.t('copyLink'), - click: () => this.copy(send) + click: () => this.copy(send), })); menu.append(new remote.MenuItem({ label: this.i18nService.t('delete'), click: async () => { await this.delete(send); await this.deletedSend(send); - } + }, })); menu.popup({ window: remote.getCurrentWindow() }); }