diff --git a/frontend/src/GameList.tsx b/frontend/src/GameList.tsx index 2e17f9a..3121ac7 100644 --- a/frontend/src/GameList.tsx +++ b/frontend/src/GameList.tsx @@ -60,7 +60,7 @@ export function GameList() { if (location.hash === "#existing-games") { const el = document.getElementById("existing-games"); if (el) { - el.scrollIntoView({ behavior: "smooth" }); + el.scrollIntoView({ behavior: "smooth", block: "start" }); } } }, [location]);