diff --git a/apps/web/src/components/layout/GlobalCommandPalette.tsx b/apps/web/src/components/layout/GlobalCommandPalette.tsx
index f0f9cec..76daa86 100644
--- a/apps/web/src/components/layout/GlobalCommandPalette.tsx
+++ b/apps/web/src/components/layout/GlobalCommandPalette.tsx
@@ -147,7 +147,6 @@ export function GlobalCommandPalette({
id: 'create-issue',
category: t('commandPalette.category.workItem', 'Work item'),
label: t('commandPalette.createIssue', 'Create new work item'),
- shortcut: 'C',
matchText: t('commandPalette.createIssue.match', 'new issue task'),
icon: ,
run: () => runAndClose(onRequestCreateWorkItem),
@@ -172,7 +171,6 @@ export function GlobalCommandPalette({
id: 'create-project',
category: t('commandPalette.category.project', 'Project'),
label: t('commandPalette.createProject', 'Go to projects'),
- shortcut: 'P',
matchText: t('commandPalette.createProject.match', 'create new project list'),
icon: ,
run: () => runAndClose(() => navigate(`${baseUrl}/projects`)),
@@ -542,16 +540,6 @@ export function GlobalCommandPalette({
const onInputKeyDown = (e: React.KeyboardEvent) => {
if (e.nativeEvent.isComposing) return;
- if (!e.ctrlKey && !e.metaKey && !e.altKey && e.key.length === 1 && query.trim() === '') {
- const letter = e.key.toUpperCase();
- const hit = filtered.find((c) => c.shortcut?.toUpperCase() === letter);
- if (hit) {
- e.preventDefault();
- hit.run();
- return;
- }
- }
-
if (e.key === 'ArrowDown') {
e.preventDefault();
moveSelection(1);