Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions internal/fetch/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (ps *progressSpinner) Close(err error) {
p.Set(core.Italic)
p.WriteString(formatDuration(end.Sub(ps.start)))
p.Reset()
for range 26 {
for range 20 {
p.WriteString(" ")
}
p.WriteString("\n")
Expand Down Expand Up @@ -226,7 +226,7 @@ func (ps *progressSpinner) renderLoop() {
}

func (ps *progressSpinner) render() {
const width = 30
const width = 20

var value string
var offset int
Expand Down
Loading