Skip to content

Commit

Permalink
chore: replace underscores with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
PiusKariuki committed Aug 19, 2024
1 parent 4539181 commit 2f20377
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const ListOrderDetails: React.FC<ListOrdersDetailsProps> = (props) => {
)}
<OrderDetail
label={t("urgency", "urgency").toUpperCase()}
value={row.urgency}
value={row.urgency.replace(/_/g, " ")}
/>
<OrderDetail
label={t("orderer", "orderer").toUpperCase()}
Expand Down

0 comments on commit 2f20377

Please sign in to comment.