diff options
| author | GitHub Action <[email protected]> | 2026-01-20 13:34:20 +0000 |
|---|---|---|
| committer | GitHub Action <[email protected]> | 2026-01-20 13:34:20 +0000 |
| commit | 47fa496701193b0879e044f0f5442a7453511e85 (patch) | |
| tree | bc7197723a1985ca7cdbd6f319a91fc2197a5d71 /packages/app | |
| parent | d77cbf9c46450536f45c70ae58d3744474d1916f (diff) | |
| download | opencode-47fa496701193b0879e044f0f5442a7453511e85.tar.gz opencode-47fa496701193b0879e044f0f5442a7453511e85.zip | |
chore: generate
Diffstat (limited to 'packages/app')
| -rw-r--r-- | packages/app/src/context/command.tsx | 3 |
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) } |
