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.
1 parent 8fb459c commit bd8ce45Copy full SHA for bd8ce45
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