From c02af81767a03a54f26eb841dd652d84f48827c1 Mon Sep 17 00:00:00 2001 From: Matt <90358481+xbtmatt@users.noreply.github.com> Date: Thu, 19 Dec 2024 16:27:49 -0800 Subject: [PATCH] Default to per market stats --- src/typescript/frontend/src/app/stats/StatsPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typescript/frontend/src/app/stats/StatsPage.tsx b/src/typescript/frontend/src/app/stats/StatsPage.tsx index 06aecd234..39932044b 100644 --- a/src/typescript/frontend/src/app/stats/StatsPage.tsx +++ b/src/typescript/frontend/src/app/stats/StatsPage.tsx @@ -29,7 +29,7 @@ export interface StatsPageProps { const MARKETS_PER_SCROLL = 100; export default function StatsPageComponent(props: StatsPageProps) { - const [tab, setTab] = useState<"global-stats" | "per-market-stats">("global-stats"); + const [tab, setTab] = useState<"global-stats" | "per-market-stats">("per-market-stats"); const ref = useRef(null); const inView = useInView(ref); const rootRef = useRef(null);