Skip to content

Commit

Permalink
fixes #92 tabs switch between users and referents
Browse files Browse the repository at this point in the history
  • Loading branch information
JeromeBu committed Jan 17, 2024
1 parent 3b47ed2 commit 57e3fcc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ export default function SoftwareUserAndReferent(props: Props) {
};

const contentUsers = () => {
return users.map(user => {
return users.map((user, index) => {
const { organization, usecaseDescription, serviceUrl } = user;
return (
<li key={organization}>
<li key={`${organization}-${index}`}>
<p>
<span className={classes.infoLegend}>{t("organization")}</span>:{" "}
{getOrganizationFullName(organization)}{" "}
Expand Down

0 comments on commit 57e3fcc

Please sign in to comment.