fix(help): Fix help bubble not centering correctly

This commit is contained in:
Gabe Cook
2024-05-23 16:50:38 -04:00
committed by Christian Rocha
parent 5b33bdbff6
commit 613d1cb46e
+1 -2
View File
@@ -215,9 +215,8 @@ func (m Model) FullHelpView(groups [][]key.Binding) string {
if m.Width > 0 && totalWidth > m.Width {
break
}
out = append(out, sep)
}
out = append(out, sep)
}
return lipgloss.JoinHorizontal(lipgloss.Top, out...)