fix(agent-task/shared): make capitalised status names consistent

Signed-off-by: Babak K. Shandiz <babakks@github.com>
This commit is contained in:
Babak K. Shandiz 2025-09-18 10:16:00 +01:00
parent 661817de50
commit 6927d642f6
No known key found for this signature in database
GPG key ID: 9472CAEFF56C742E

View file

@ -30,7 +30,7 @@ func SessionStateString(state string) string {
case "queued":
return "Queued"
case "in_progress":
return "In Progress"
return "In progress"
case "completed":
return "Ready for review"
case "failed":
@ -38,9 +38,9 @@ func SessionStateString(state string) string {
case "idle":
return "Idle"
case "waiting_for_user":
return "Waiting for User"
return "Waiting for user"
case "timed_out":
return "Timed Out"
return "Timed out"
case "cancelled":
return "Cancelled"
default: