Fix seasons page not scrolled to top on initial load

This commit is contained in:
Kalle 2023-09-10 11:30:59 +03:00
parent 2b23ed434c
commit da066fb4f4

View File

@ -1,8 +1,12 @@
import type { LoaderArgs, SerializeFrom } from "@remix-run/node";
import {
Link,
useActionData,
useFetcher,
useFormAction,
useLoaderData,
useMatches,
useNavigation,
useSearchParams,
} from "@remix-run/react";
import clsx from "clsx";
@ -572,6 +576,7 @@ function Matches() {
};
React.useEffect(() => {
if (data.matches.currentPage === 1) return;
ref.current?.scrollIntoView({
block: "center",
});