From 79bbf90b727f35915e665b99ba13f260b0dc94fe Mon Sep 17 00:00:00 2001 From: adamdottv <2363879+adamdottv@users.noreply.github.com> Date: Fri, 27 Jun 2025 07:46:42 -0500 Subject: chore: rework openapi spec and use stainless sdk --- packages/tui/internal/components/commands/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/tui/internal/components/commands') 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) } -- cgit v1.2.3