Skip to content

Commit

Permalink
Add missing key (#5892)
Browse files Browse the repository at this point in the history
  • Loading branch information
FestiveKyle authored Nov 14, 2024
1 parent b555b4d commit ae4df51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/guidance/WebConnectionResults.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function WebConnectionResults({ connectionResults, isWebHosting }) {
chainResult.connections.map(({ uri, connection, error }, idx) => {
if (error) {
return (
<Box px="2" m="2" borderWidth="1px" bg="gray.100" borderColor="gray.300">
<Box key={idx} px="2" m="2" borderWidth="1px" bg="gray.100" borderColor="gray.300">
<Text>
{idx + 1}. {uri}
</Text>
Expand Down

0 comments on commit ae4df51

Please sign in to comment.