From 00ffea6a46890bdeac160f8a35b91a7d9298b721 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 26 Oct 2025 21:12:30 -0700 Subject: create component for loading screen --- frontend/src/pages/Chart.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'frontend/src/pages/Chart.tsx') diff --git a/frontend/src/pages/Chart.tsx b/frontend/src/pages/Chart.tsx index 346efd0..a84ae74 100644 --- a/frontend/src/pages/Chart.tsx +++ b/frontend/src/pages/Chart.tsx @@ -1,4 +1,5 @@ import { useEffect, useState, useCallback } from "react"; +import LoadingDisplay from "../components/displays/LoadingDisplay"; import { useAuth } from "../contexts/AuthContext"; import { useNavigate } from "react-router"; import { NavBar } from "../components/NavBar"; @@ -130,12 +131,7 @@ const Chart = () => { if (isLoading || loading) { return ( -
-
-
-

Loading scores...

-
-
+ ); } -- cgit v1.2.3