Skip to content

Commit

Permalink
CMS-740: Fix feature-year row key (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
duncan-oxd authored Feb 26, 2025
1 parent 79ff061 commit 47b0479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/router/pages/PublishPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function PublishPage() {
</thead>
<tbody>
{data?.features.map((feature) => (
<tr key={feature.id}>
<tr key={`${feature.id}-${feature.season}`}>
<td>{feature.park.name}</td>
<td>{feature.name}</td>
<td>
Expand Down

0 comments on commit 47b0479

Please sign in to comment.