Revert "fix(tui): too early"

This reverts commit 564418f1ff.
This commit is contained in:
Frank 2025-08-26 16:13:16 -04:00
parent 11de2e59f3
commit e73a7c23d0

View file

@ -953,9 +953,9 @@ func (a Model) home() (string, int, int) {
)
// Use limit of 4 for vscode, 6 for others
limit := 6
limit := 4
if util.IsVSCode() {
limit = 4
limit = 2
}
showVscode := util.IsVSCode()
@ -987,6 +987,8 @@ func (a Model) home() (string, int, int) {
lines = append(lines, cmds)
lines = append(lines, "")
lines = append(lines, "")
lines = append(lines, grok)
lines = append(lines, "")
mainHeight := lipgloss.Height(strings.Join(lines, "\n"))