diff --git a/src/pages/home.tsx b/src/pages/home.tsx index eabe56b..7c697a9 100644 --- a/src/pages/home.tsx +++ b/src/pages/home.tsx @@ -251,6 +251,7 @@ const DisplayLatestMods = () => { useDidMount(() => { fetchMods({ source: window.location.host, limit: 4 }) .then((res) => { + res.sort((a, b) => b.published_at - a.published_at) setLatestMods(res) }) .finally(() => {