1
0
mirror of https://github.com/bitwarden/desktop.git synced 2025-02-18 01:31:42 +01:00

Fix lint error (s) => arrow function parens banned

This commit is contained in:
Chad Scharf 2021-02-08 10:16:17 -05:00 committed by GitHub
parent ab9b87acf3
commit fa68ea249c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,6 +53,6 @@ export class SendComponent extends BaseSendComponent implements OnInit {
} }
get selectedSendType() { get selectedSendType() {
return this.sends.find((s) => s.id === this.sendId).type; return this.sends.find(s => s.id === this.sendId).type;
} }
} }