Skip to content

Commit

Permalink
Add translations to deliveries
Browse files Browse the repository at this point in the history
  • Loading branch information
idamand committed Dec 12, 2024
1 parent 775cc14 commit a1518ac
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ const CustomerCaseList = ({

const deliveryNames = [
selectedCustomerCase?.projectInfo.deliveries.projectManagement &&
"Project Management",
selectedCustomerCase?.projectInfo.deliveries.design && "Design",
selectedCustomerCase?.projectInfo.deliveries.development && "Development",
"project_management",
selectedCustomerCase?.projectInfo.deliveries.design && "design",
selectedCustomerCase?.projectInfo.deliveries.development && "development",
].filter(Boolean);

return (
Expand Down Expand Up @@ -90,7 +90,7 @@ function CardInfo({
<div className={styles.deliveriesList}>
{deliveryNames.map((deliveryName, index) => (
<Text key={index} type="h5" className={styles.dotSeparator}>
{deliveryName}
{t(deliveryName)}
</Text>
))}
</div>
Expand Down

0 comments on commit a1518ac

Please sign in to comment.