1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 22:13:32 +00:00

Added debug to desktop

This commit is contained in:
Todd Martin
2025-01-01 12:19:16 -05:00
parent 1d33acbffc
commit 2f5b07192f

View File

@@ -5,8 +5,6 @@ import { MenuItemConstructorOptions } from "electron";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { MessagingService } from "@bitwarden/common/platform/abstractions/messaging.service";
import { isDev } from "../../utils";
import { IMenubarMenu } from "./menubar";
export class ViewMenu implements IMenubarMenu {
@@ -32,9 +30,7 @@ export class ViewMenu implements IMenubarMenu {
this.reload,
];
if (isDev()) {
items.push(this.toggleDevTools);
}
items.push(this.toggleDevTools);
return items;
}