Skip to content

Commit

Permalink
Merge pull request #94 from betagouv/maud/typo
Browse files Browse the repository at this point in the history
Typo
  • Loading branch information
jillro authored Jan 27, 2025
2 parents 3e241ad + b480b49 commit 269a652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PresentationsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function presentationDetailName(p: PresentationDetail): string {
return `${totalDisplay(p)} - ${p.nbrrecipient} ${recipient.replaceAll("(s)", "s")}${caracCompDisplay(p)} de ${contentDisplay(p)}`;
}

return `${p.nbrrecipient} ${recipient.replaceAll("(s)", "s")}${caracCompDisplay(p)}${p.qtecontenance && p.qtecontenance ? `de ${contentDisplay(p)}` : ""}`;
return `${p.nbrrecipient} ${recipient.replaceAll("(s)", "s")}${caracCompDisplay(p)}${p.qtecontenance && p.qtecontenance ? ` de ${contentDisplay(p)}` : ""}`;
}

return capitalize(
Expand Down

0 comments on commit 269a652

Please sign in to comment.