summaryrefslogtreecommitdiffhomepage
path: root/packages/app/src/context
diff options
context:
space:
mode:
Diffstat (limited to 'packages/app/src/context')
-rw-r--r--packages/app/src/context/command.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/app/src/context/command.tsx b/packages/app/src/context/command.tsx
index 1e71801bd..681dcb235 100644
--- a/packages/app/src/context/command.tsx
+++ b/packages/app/src/context/command.tsx
@@ -142,8 +142,7 @@ export function formatKeybind(config: string): string {
space: "Space",
}
const key = kb.key.toLowerCase()
- const displayKey =
- keys[key] ?? (key.length === 1 ? key.toUpperCase() : key.charAt(0).toUpperCase() + key.slice(1))
+ const displayKey = keys[key] ?? (key.length === 1 ? key.toUpperCase() : key.charAt(0).toUpperCase() + key.slice(1))
parts.push(displayKey)
}