1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-30 11:15:36 +02:00

Removed unnecessary brackets

This commit is contained in:
Daniel James Smith 2021-11-02 10:09:44 +01:00
parent 9d79bae1c8
commit dd7bfcdc12
No known key found for this signature in database
GPG Key ID: 03E4BD365FF06726

View File

@ -192,7 +192,7 @@ export default class NotificationBackground {
}
if (await this.vaultTimeoutService.isLocked()) {
if (!(await this.allowPersonalOwnership())) {
if (!await this.allowPersonalOwnership()) {
return;
}
@ -210,7 +210,7 @@ export default class NotificationBackground {
return;
}
if (!(await this.allowPersonalOwnership())) {
if (!await this.allowPersonalOwnership()) {
return;
}