Skip to content

Commit 6927d64

Browse files
committed
fix(agent-task/shared): make capitalised status names consistent
Signed-off-by: Babak K. Shandiz <babakks@github.com>
1 parent 661817d commit 6927d64

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/cmd/agent-task/shared/display.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ func SessionStateString(state string) string {
3030
case "queued":
3131
return "Queued"
3232
case "in_progress":
33-
return "In Progress"
33+
return "In progress"
3434
case "completed":
3535
return "Ready for review"
3636
case "failed":
3737
return "Failed"
3838
case "idle":
3939
return "Idle"
4040
case "waiting_for_user":
41-
return "Waiting for User"
41+
return "Waiting for user"
4242
case "timed_out":
43-
return "Timed Out"
43+
return "Timed out"
4444
case "cancelled":
4545
return "Cancelled"
4646
default:

0 commit comments

Comments
 (0)