diff --git a/packages/frontend/src/components/pages/profiles/Profile.tsx b/packages/frontend/src/components/pages/profiles/Profile.tsx index 7c7d5ae..06dce7d 100644 --- a/packages/frontend/src/components/pages/profiles/Profile.tsx +++ b/packages/frontend/src/components/pages/profiles/Profile.tsx @@ -38,8 +38,8 @@ const sortTrainsByList: Record = { export const ProfileCard = ({ data, images }: { data: TProfileData, images: TImagesData }) => { const [sortTrainsBy, setSortTrainsBy] = useState(0); - const [sortTrainsBy2, setSortTrainsBy2] = useState(2); - const [sortStationsBy, setSortStationsBy] = useState(0); + const [sortTrainsBy2, setSortTrainsBy2] = useState(0); + const [sortStationsBy, setSortStationsBy] = useState(2); const [hideLeaderboardStatsModal, setHideLeaderboardStatsModal] = useState(false); const [hideProfileModal, setHideProfileModal] = useState(false);