From 63d685a105054a6b4ffa8dd1072a4e9b10ad0eec Mon Sep 17 00:00:00 2001 From: Light1YT Date: Sat, 27 Jun 2026 17:18:57 +0500 Subject: [PATCH] =?UTF-8?q?fix(report):=20=D1=83=D0=BD=D0=B8=D0=BA=D0=B0?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D1=8B=D0=B9=20React=20key=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D0=92=D0=A0=D0=98-=D1=81=D0=BF=D0=B8=D1=81=D0=BA?= =?UTF-8?q?=D0=B0=20(=D0=B4=D1=83=D0=B1=D0=BB=D1=8C-VRI=20warning)=20(#196?= =?UTF-8?q?2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/site-finder/analysis/NspdRegulationCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/site-finder/analysis/NspdRegulationCard.tsx b/frontend/src/components/site-finder/analysis/NspdRegulationCard.tsx index 61812cdd..82da05bb 100644 --- a/frontend/src/components/site-finder/analysis/NspdRegulationCard.tsx +++ b/frontend/src/components/site-finder/analysis/NspdRegulationCard.tsx @@ -150,8 +150,8 @@ export function NspdRegulationCard({ zoning, areaM2 }: Props) { color: "var(--fg-secondary)", }} > - {vm.permittedUses.map((use) => ( -
  • {use}
  • + {vm.permittedUses.map((use, i) => ( +
  • {use}
  • ))}