Skip to content

Commit

Permalink
fix(nrplus): do not reuse state
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Oct 31, 2023
1 parent 542f998 commit e471648
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DeviceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export const DeviceList = () => {
if (isNRPlusGateway(device)) {
return (
<li>
<NRPlusGatewayTile gateway={device} />
<NRPlusGatewayTile gateway={device} key={device.id} />
</li>
)
}
Expand Down

0 comments on commit e471648

Please sign in to comment.