diff --git a/packages/web/src/tabs/SettingsTab.svelte b/packages/web/src/tabs/SettingsTab.svelte index ecc4e6b9b..f86f73be2 100644 --- a/packages/web/src/tabs/SettingsTab.svelte +++ b/packages/web/src/tabs/SettingsTab.svelte @@ -12,6 +12,7 @@ import LicenseSettings from "../settings/LicenseSettings.svelte"; import { isProApp } from "../utility/proTools"; import { _t } from "../translations"; + import CommandListTab from "./CommandListTab.svelte"; const menuItems = [ { @@ -56,6 +57,13 @@ props: {}, testid: 'settings-external-tools', }, + { + label: _t('command.settings.shortcuts', { defaultMessage: 'Keyboard shortcuts' }), + identifier: 'shortcuts', + component: CommandListTab, + props: {}, + testid: 'settings-shortcuts', + }, isProApp() && { label: _t('settings.license', { defaultMessage: 'License' }), identifier: 'license',