relay management (settings), profile box display fix, /games mod fetch filter by current site source, game in mod post to redirect to game search for that game #49

Merged
freakoverse merged 4 commits from staging into master 2024-09-25 16:22:46 +00:00
Showing only changes of commit f4f9a8bd17 - Show all commits

View File

@ -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<string>()