UPDATE: fix bug
All checks were successful
Build and Release / release (push) Successful in 1m33s

This commit is contained in:
2026-04-16 10:19:17 +07:00
parent 4e1e9892ac
commit ae1c9473fc
9 changed files with 16 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ func (t StatusType) String() string {
case StatusApproved:
return "APPROVED"
case StatusRejected:
return "REJECT"
return "REJECTED"
default:
return "UNKNOWN"
}
@@ -45,7 +45,7 @@ func ParseStatusTypeText(v string) StatusType {
return StatusPending
case "APPROVED":
return StatusApproved
case "REJECT":
case "REJECTED":
return StatusRejected
default:
return StatusUnknown