diff --git a/frontend/src/components/Map/DetailsMap/SensitiveAreas.tsx b/frontend/src/components/Map/DetailsMap/SensitiveAreas.tsx index d419feb98..1cda2fe49 100644 --- a/frontend/src/components/Map/DetailsMap/SensitiveAreas.tsx +++ b/frontend/src/components/Map/DetailsMap/SensitiveAreas.tsx @@ -36,11 +36,13 @@ export const SensitiveAreas: React.FC = ({ contents }) => { return null; } - return ( - <> - {polygons.map(({ positions, color }, i) => { - return ; - })} - - ); + return polygons.map(({ positions, color }) => ( + + )); };