File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -286,6 +286,8 @@ func (m *model) verticalView() string {
286286 }
287287 if working := m .workingIndicator (); working != "" {
288288 session = append (session , working )
289+ } else {
290+ session = append (session , "" ) // spacer for layout consistency
289291 }
290292
291293 var main []string
@@ -306,7 +308,7 @@ func (m *model) verticalView() string {
306308 main = append (main , todoContent )
307309 }
308310
309- return strings .Join (main , "\n \n " )
311+ return strings .Join (main , "\n " )
310312}
311313
312314func (m * model ) workingIndicator () string {
@@ -397,7 +399,6 @@ func (m *model) workingIndicatorHorizontal() string {
397399 if m .working {
398400 labels = append (labels , "Working…" )
399401 }
400-
401402 // Add MCP init indicator if initializing
402403 if m .mcpInit {
403404 labels = append (labels , "Initializing MCP servers…" )
You can’t perform that action at this time.
0 commit comments