diff --git a/packages/twenty-front/src/effect-components/GotoHotkeysEffect.tsx b/packages/twenty-front/src/effect-components/GotoHotkeysEffect.tsx index b6cecf7bd09f..1109066af34a 100644 --- a/packages/twenty-front/src/effect-components/GotoHotkeysEffect.tsx +++ b/packages/twenty-front/src/effect-components/GotoHotkeysEffect.tsx @@ -5,7 +5,7 @@ export const GotoHotkeysEffect = () => { useGoToHotkeys('c', '/objects/companies'); useGoToHotkeys('o', '/objects/opportunities'); useGoToHotkeys('s', '/settings/profile'); - useGoToHotkeys('t', '/tasks'); + useGoToHotkeys('t', '/objects/tasks'); return <>; }; diff --git a/packages/twenty-front/src/modules/command-menu/constants/CommandMenuCommands.ts b/packages/twenty-front/src/modules/command-menu/constants/CommandMenuCommands.ts index 6cfc5528098c..3c7f03168d98 100644 --- a/packages/twenty-front/src/modules/command-menu/constants/CommandMenuCommands.ts +++ b/packages/twenty-front/src/modules/command-menu/constants/CommandMenuCommands.ts @@ -47,7 +47,7 @@ export const COMMAND_MENU_COMMANDS: Command[] = [ }, { id: 'go-to-tasks', - to: '/tasks', + to: '/objects/tasks', label: 'Go to Tasks', type: CommandType.Navigate, firstHotKey: 'G',