diff --git a/src/pages/games.tsx b/src/pages/games.tsx index d2eb023..37d6759 100644 --- a/src/pages/games.tsx +++ b/src/pages/games.tsx @@ -18,7 +18,7 @@ export const GamesPage = () => { const [currentPage, setCurrentPage] = useState(1) useDidMount(() => { - fetchMods({ limit: 100 }).then((mods) => { + fetchMods({ limit: 100, source: window.location.host }).then((mods) => { mods.sort((a, b) => b.published_at - a.published_at) const gameNames = new Set()