diff options
Diffstat (limited to 'packages/tui/internal/components/core')
| -rw-r--r-- | packages/tui/internal/components/core/status.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/tui/internal/components/core/status.go b/packages/tui/internal/components/core/status.go index fc0f61e5a..aa3febf9b 100644 --- a/packages/tui/internal/components/core/status.go +++ b/packages/tui/internal/components/core/status.go @@ -140,14 +140,15 @@ func formatTokensAndCost(tokens float32, contextWindow float32, cost float32) st } func (m statusComponent) View() string { + t := theme.CurrentTheme() if m.app.Session.Id == "" { return styles.BaseStyle(). + Background(t.Background()). Width(m.width). Height(2). Render("") } - t := theme.CurrentTheme() logo := logo() cwd := styles.Padded(). |
