diff options
| author | adamdottv <[email protected]> | 2025-06-27 07:46:42 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-06-27 14:26:25 -0500 |
| commit | 79bbf90b727f35915e665b99ba13f260b0dc94fe (patch) | |
| tree | 4ee5e4d79635429a45b9035955323e3e03078e78 /packages/tui/internal/components/commands | |
| parent | 226a4a7f3610860d437ddf8d7d8216e909297418 (diff) | |
| download | opencode-79bbf90b727f35915e665b99ba13f260b0dc94fe.tar.gz opencode-79bbf90b727f35915e665b99ba13f260b0dc94fe.zip | |
chore: rework openapi spec and use stainless sdk
Diffstat (limited to 'packages/tui/internal/components/commands')
| -rw-r--r-- | packages/tui/internal/components/commands/commands.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/tui/internal/components/commands/commands.go b/packages/tui/internal/components/commands/commands.go index d7f334c35..e20755575 100644 --- a/packages/tui/internal/components/commands/commands.go +++ b/packages/tui/internal/components/commands/commands.go @@ -128,7 +128,7 @@ func (c *commandsComponent) View() string { if c.showKeybinds { for _, kb := range cmd.Keybindings { if kb.RequiresLeader { - keybindStrs = append(keybindStrs, *c.app.Config.Keybinds.Leader+" "+kb.Key) + keybindStrs = append(keybindStrs, c.app.Config.Keybinds.Leader+" "+kb.Key) } else { keybindStrs = append(keybindStrs, kb.Key) } |
