diff options
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) } |
