mirror of
https://github.com/bitwarden/browser.git
synced 2025-01-14 20:01:31 +01:00
Removed unnecessary brackets
This commit is contained in:
parent
9d79bae1c8
commit
dd7bfcdc12
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user