chore: rework openapi spec and use stainless sdk

This commit is contained in:
adamdottv 2025-06-27 07:46:42 -05:00
parent 226a4a7f36
commit 79bbf90b72
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
28 changed files with 658 additions and 6634 deletions

View file

@ -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)
}