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

Commit

Permalink
Add key to map function
Browse files Browse the repository at this point in the history
  • Loading branch information
GDamaso committed Jun 20, 2024
1 parent 48cab3c commit 180d8ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const SummaryComponent: React.FC<InputModuleProps> = ({ farmDetails }) => {
<p>Fields:&nbsp;</p>
</span>
{farmDetails.Fields.map((field) => (
<div>
<div key={field.FieldName + field.Area + field.Comment}>
<div
className="fieldRow"
key={field.FieldName}
Expand Down

0 comments on commit 180d8ba

Please sign in to comment.