Skip to content

Commit

Permalink
[#152] fix inprogress copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Sworzen1 committed Feb 28, 2024
1 parent abf69be commit b925c3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const DashboardActionCard: FC<DashboardActionCardProps> = ({
}}
>
<Typography color={"orangeDark"} variant="body2">
{t("inProgress").toLocaleUpperCase()}
{t("inProgress")}
</Typography>
</Box>
)}
Expand Down Expand Up @@ -113,7 +113,7 @@ export const DashboardActionCard: FC<DashboardActionCardProps> = ({
) : null}
{inProgress && !isLoading ? (
<Typography variant="title2" fontWeight={700}>
In Progress
{t("inProgress")}
</Typography>
) : null}
{description ? (
Expand Down
2 changes: 1 addition & 1 deletion govtool/frontend/src/i18n/locales/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ export const en = {
continue: "Continue",
delegate: "Delegate",
here: "here",
inProgress: "In progress",
inProgress: "In Progress",
learnMore: "Learn more",
loading: "Loading...",
myDRepId: "My DRep ID:",
Expand Down

0 comments on commit b925c3f

Please sign in to comment.