diff --git a/client/src/components/Projects/ProjectsPage.jsx b/client/src/components/Projects/ProjectsPage.jsx index 7d053cf7..001dd5b2 100644 --- a/client/src/components/Projects/ProjectsPage.jsx +++ b/client/src/components/Projects/ProjectsPage.jsx @@ -819,7 +819,7 @@ const ProjectsPage = ({ contentContainerRef }) => { const indexOfFirstPost = indexOfLastPost - projectsPerPage; const sortedProjects = stableSort( projects.filter(p => filter(p, criteria)), - getComparator(order, orderBy) + getComparator("desc", "dateModified") ); const currentProjects = sortedProjects.slice( indexOfFirstPost,