diff --git a/src/components/maps/main-map.tsx b/src/components/maps/main-map.tsx index 06227ee..680594e 100644 --- a/src/components/maps/main-map.tsx +++ b/src/components/maps/main-map.tsx @@ -27,26 +27,23 @@ const MainMap: React.FC = ({ kids }) => { zoom={10} scrollWheelZoom={true} > - - <> - {kids?.map((kid) => - kid.devices?.map((device) => - device.pings.map((ping) => ( - - )), - ), - )} - - + + {kids?.map((kid) => + kid.devices?.map((device) => + device.pings.map((ping) => ( + + )), + ), + )} );