Skip to content

Commit

Permalink
Fix: Update status in table
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed Apr 9, 2024
1 parent 8d4ac2f commit ff09728
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/container/DDAgreements/ddaTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ const DDAtable = ({

const getStatus = (status) => {
if (status === "unlisted") {
return "Unlist";
return "Unlisted";
} else if (status === "awaitingForApproval") {
return "Review";
return "InReview";
} else if (status === "approved") {
return "Approve";
return "Approved";
} else if (status === "rejected") {
return "Reject";
return "Rejected";
} else if (status === "listed") {
return "List";
return "Listed";
}
};

Expand Down

0 comments on commit ff09728

Please sign in to comment.