Skip to content

Commit

Permalink
refactor: links in the other info section
Browse files Browse the repository at this point in the history
HH-337
  • Loading branch information
nikomakela committed Jan 16, 2024
1 parent 62e3959 commit 0b7e9f3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,14 @@ const OtherInfo: React.FC<{
) => {
return (
!!externalLink.link &&
!!externalLink.name &&
externalLink.link !== registrationUrl && (
<SecondaryLink
className={styles.link}
key={index}
key={`externalLink-${index}`}
href={externalLink.link}
>
{translateValue('info.', externalLink.name as string, t)}
{translateValue('info.', externalLink.name, t)}
</SecondaryLink>
)
);
Expand Down

0 comments on commit 0b7e9f3

Please sign in to comment.