diff --git a/src/pages/Profile.tsx b/src/pages/Profile.tsx index 731ce56b..2261a4ef 100644 --- a/src/pages/Profile.tsx +++ b/src/pages/Profile.tsx @@ -11,6 +11,7 @@ import { useTranslation } from 'react-i18next' import Widget from 'src/shared/Widget' import { useLoaderData } from 'react-router-dom' import { ProfileLineDetails } from './ProfileLineDetails' +import { MapWithLocationsAndPath } from './components/map-related/MapWithLocationsAndPath' const Profile = () => { return ( @@ -104,6 +105,9 @@ const LineProfileComponent = () => {
+ + + ) } @@ -132,4 +136,10 @@ const TableStyle = styled.table` } ` +const LineProfileMapContainer = styled.div` + .map-info { + height: 15rem; + } +` + export default Profile