Skip to content

Commit

Permalink
fix(dashboard): wording chnage
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin committed Sep 30, 2022
1 parent 59f45bd commit ee0b1f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/ReviewRequest/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ const ApprovalButton = (): JSX.Element => {
return (
<MenuDropdownButton
colorScheme={isApproved ? "success" : "primary"}
mainButtonText={isApproved ? "Approved" : "Pending Review"}
mainButtonText={isApproved ? "Approved" : "In review"}
variant="solid"
>
<MenuDropdownItem onClick={() => setIsApproved(false)}>
<Text textStyle="body-1" textColor="text.body" w="100%">
Pending review
In review
</Text>
</MenuDropdownItem>
<MenuDropdownItem onClick={() => setIsApproved(true)}>
Expand Down

0 comments on commit ee0b1f1

Please sign in to comment.