Skip to content

Commit 9f86ed3

Browse files
committed
Use addLine for ready status line
1 parent cce671a commit 9f86ed3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/ui/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ func (a App) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
175175
if msg.Phase == "ready" {
176176
line = strings.Replace(line, output.SuccessMarker(), styles.Success.Render(output.SuccessMarker()), 1)
177177
}
178-
a.lines = appendLine(a.lines, styledLine{text: line})
178+
a.addLine(styledLine{text: line})
179179
}
180180
return a, nil
181181
case output.ProgressEvent:

0 commit comments

Comments
 (0)