Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit ca1e676

Browse files
committed
fix: in-progress status
1 parent 4b30af8 commit ca1e676

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/constants/workPeriods.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const PAYMENT_STATUS_MAP = {
7474
[PAYMENT_STATUS.COMPLETED]: API_PAYMENT_STATUS.COMPLETED,
7575
[PAYMENT_STATUS.PARTIALLY_COMPLETED]: API_PAYMENT_STATUS.PARTIALLY_COMPLETED,
7676
[PAYMENT_STATUS.PENDING]: API_PAYMENT_STATUS.PENDING,
77-
[PAYMENT_STATUS.IN_PROGRESS]: API_PAYMENT_STATUS.PARTIALLY_COMPLETED,
77+
[PAYMENT_STATUS.IN_PROGRESS]: API_PAYMENT_STATUS.IN_PROGRESS,
7878
};
7979

8080
export const API_PAYMENT_STATUS_MAP = (function () {

src/constants/workPeriods/apiPaymentStatus.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export const PENDING = "pending";
22
export const PARTIALLY_COMPLETED = "partially-completed";
33
export const COMPLETED = "completed";
44
export const NO_DAYS = "no-days";
5-
export const FAILED = "failed";
5+
export const IN_PROGRESS = "in-progress";

0 commit comments

Comments
 (0)