Skip to content

Commit

Permalink
Default to per market stats
Browse files Browse the repository at this point in the history
  • Loading branch information
xbtmatt committed Dec 20, 2024
1 parent 4a58cb8 commit c02af81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/typescript/frontend/src/app/stats/StatsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<HTMLDivElement | null>(null);
const inView = useInView(ref);
const rootRef = useRef<HTMLDivElement | null>(null);
Expand Down

0 comments on commit c02af81

Please sign in to comment.