diff --git a/app/src/components/logTrackMaps/LogTrackMaps.tsx b/app/src/components/logTrackMaps/LogTrackMaps.tsx index f50be45..8dfd594 100644 --- a/app/src/components/logTrackMaps/LogTrackMaps.tsx +++ b/app/src/components/logTrackMaps/LogTrackMaps.tsx @@ -4,8 +4,6 @@ import { useHttpClient } from '../../hooks/httpClient/UseHttpClient'; import { AxiosInstance, AxiosResponse } from 'axios'; import { useAccessToken } from '../../hooks/accessToken/UseAcessToken'; import { useIsAuthenticated } from '@azure/msal-react'; -import { Swiper, SwiperSlide } from 'swiper/react'; -import { Pagination } from 'swiper/modules'; import { MapContainer, TileLayer } from 'react-leaflet'; import ReactLeafletKml from 'react-leaflet-kml'; import 'swiper/css'; @@ -47,33 +45,20 @@ const LogTrackMaps = ({ rowKey, trackUrls }: LogTrackMapsProps) => { return ( <> - - {tracks.length > 0 && tracks.map((track) => { - return ( - - - - - - - ) - })} - + + {tracks.length > 0 && tracks.map((track) => ( + + ))} + ); }