diff --git a/src/app/pages/Home.tsx b/src/app/pages/Home.tsx index 70eb831a..2634fc18 100644 --- a/src/app/pages/Home.tsx +++ b/src/app/pages/Home.tsx @@ -130,7 +130,12 @@ function Changelog() { const hugeScreen = useMediaQuery('(min-width: 960px)') const { value: changes } = useAsync(fetchChangelogs, []) - const latestChanges = useMemo(() => changes?.sort((a, b) => b.order - a.order).slice(0, 2), [changes]) + const latestChanges = useMemo(() => { + return changes + ?.sort((a, b) => b.order - a.order) + .filter(c => !(c.tags.includes('pack') && c.tags.includes('breaking'))) + .slice(0, 2) + }, [changes]) return {latestChanges?.map(change => )}