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