Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
#729 - add key to icon link pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescd18 committed Jun 19, 2022
1 parent 23ff516 commit ffa3662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/pipes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const linkPipe = (description: string, link: string): ReactElement => {

export const iconLinkPipe = (icon: IconProp, description: string, link: string) => {
return (
<div className="d-flex flex-row align-items-center px-3">
<div key={description} className="d-flex flex-row align-items-center px-3">
<FontAwesomeIcon icon={icon} size="lg" className="pr-1" />
{linkPipe(description, link)}
</div>
Expand Down

0 comments on commit ffa3662

Please sign in to comment.