We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8fb459c + bd8ce45 commit 1790babCopy full SHA for 1790bab
pkg/cmd/dev.go
@@ -210,7 +210,7 @@ func (m BuildModel) fetchDiagnostics() tea.Cmd {
210
diagnostics := m.cc.client.Builds.Diagnostics.ListAutoPaging(m.ctx, m.build.ID, stainless.BuildDiagnosticListParams{
211
Limit: stainless.Float(100),
212
})
213
- if diagnostics.Next() {
+ for diagnostics.Next() {
214
diag := diagnostics.Current()
215
if !diag.Ignored {
216
diags = append(diags, diag)
0 commit comments