Skip to content

Commit

Permalink
simplify contentUsers keys
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeBu committed Jan 17, 2024
1 parent 5cdf6a8 commit e5a5d58
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export default function SoftwareUserAndReferent(props: Props) {
return users.map((user, index) => {
const { organization, usecaseDescription, serviceUrl } = user;
return (
<li key={`${organization}-${index}`}>
<li key={index}>
<p>
<span className={classes.infoLegend}>{t("organization")}</span>:{" "}
{getOrganizationFullName(organization)}{" "}
Expand Down

0 comments on commit e5a5d58

Please sign in to comment.