diff --git a/apps/desktop/src/locales/en/messages.json b/apps/desktop/src/locales/en/messages.json index 47fab63a9dd..68eb26c4735 100644 --- a/apps/desktop/src/locales/en/messages.json +++ b/apps/desktop/src/locales/en/messages.json @@ -770,6 +770,9 @@ "contactUs": { "message": "Contact us" }, + "helpAndFeedback": { + "message": "Help and feedback" + }, "getHelp": { "message": "Get help" }, diff --git a/apps/desktop/src/main/menu/menu.help.ts b/apps/desktop/src/main/menu/menu.help.ts index 2abab06dfab..6a17d088fba 100644 --- a/apps/desktop/src/main/menu/menu.help.ts +++ b/apps/desktop/src/main/menu/menu.help.ts @@ -16,8 +16,7 @@ export class HelpMenu implements IMenubarMenu { get items(): MenuItemConstructorOptions[] { const items = [ - this.getHelp, - this.contactUs, + this.helpAndFeedback, this.fileBugReport, this.legal, this.separator, @@ -45,18 +44,10 @@ export class HelpMenu implements IMenubarMenu { this._aboutMenu = aboutMenu; } - private get contactUs(): MenuItemConstructorOptions { + private get helpAndFeedback(): MenuItemConstructorOptions { return { - id: "contactUs", - label: this.localize("contactUs"), - click: () => shell.openExternal("https://bitwarden.com/contact"), - }; - } - - private get getHelp(): MenuItemConstructorOptions { - return { - id: "getHelp", - label: this.localize("getHelp"), + id: "helpAndFeedback", + label: this.localize("helpAndFeedback"), click: () => shell.openExternal("https://bitwarden.com/help"), }; }