mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
Shorten variable name
This commit is contained in:
@@ -347,10 +347,10 @@ export default class MainBackground {
|
||||
return;
|
||||
}
|
||||
|
||||
const lockedVaultPendingNotificationsItem = this.lockedVaultPendingNotifications.pop();
|
||||
switch (lockedVaultPendingNotificationsItem.from) {
|
||||
const item = this.lockedVaultPendingNotifications.pop();
|
||||
switch (item.from) {
|
||||
case 'notificationBar':
|
||||
await this.notificationBackground.processMessage(lockedVaultPendingNotificationsItem.commandToRetry, lockedVaultPendingNotificationsItem.commandToRetry.sender, null);
|
||||
await this.notificationBackground.processMessage(item.commandToRetry, item.commandToRetry.sender, null);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user