Skip to content

Commit

Permalink
fix: unique key for status
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Aug 31, 2021
1 parent dc69115 commit 134db81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Canary/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function StatusList({ check, checkStatuses }) {
<>
{check.checkStatuses.map((status) => (
<CanaryStatus
key={`${status.time}-${status.duration}-${status.message}`}
key={status.id}
status={status}
className="mr-0.5"
/>
Expand Down

0 comments on commit 134db81

Please sign in to comment.