Skip to content

Commit

Permalink
add key for guidance elements
Browse files Browse the repository at this point in the history
  • Loading branch information
mehansen committed Jul 25, 2024
1 parent c22bd93 commit c45d13e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ const ResultsGuidance: React.FC<ResultsGuidanceProps> = ({
<>
{guidance.map((el) => {
return (
<div className={!isPatientApp ? "sr-margin-bottom-28px" : ""}>
<div
className={!isPatientApp ? "sr-margin-bottom-28px" : ""}
key={el.type.name}
>
{el}
</div>
);
Expand Down

0 comments on commit c45d13e

Please sign in to comment.