From ead53ecbd6570a2465ae8e42a7324d966639c13d Mon Sep 17 00:00:00 2001 From: Repr Date: Sun, 12 Apr 2026 11:02:26 -0400 Subject: [PATCH] feat(leaderboard): added page indicator --- .../src/ts/components/pages/leaderboard/Navigation.tsx | 3 +++ .../ts/components/pages/leaderboard/PageIndicator.tsx | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 frontend/src/ts/components/pages/leaderboard/PageIndicator.tsx diff --git a/frontend/src/ts/components/pages/leaderboard/Navigation.tsx b/frontend/src/ts/components/pages/leaderboard/Navigation.tsx index 67b6bca974df..b698ce1d8d57 100644 --- a/frontend/src/ts/components/pages/leaderboard/Navigation.tsx +++ b/frontend/src/ts/components/pages/leaderboard/Navigation.tsx @@ -5,6 +5,8 @@ import { showSimpleModal } from "../../../states/simple-modal"; import { cn } from "../../../utils/cn"; import { Button } from "../../common/Button"; import { LoadingCircle } from "../../common/LoadingCircle"; +import { PageIndicator } from "./PageIndicator"; + export function Navigation(props: { lastPage: number; userPage?: number; @@ -26,6 +28,7 @@ export function Navigation(props: { +