From c57bb4a60717c69826c609d75c6bb9519ebb1c04 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 14 Oct 2025 10:12:46 -0700 Subject: add favicon --- frontend/index.html | 2 +- frontend/public/favicon.svg | 41 ++++++++++++++++++++++ frontend/public/vite.svg | 1 - .../src/components/displays/DivaScoreDisplay.tsx | 1 - frontend/src/pages/Landing.tsx | 2 +- 5 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 frontend/public/favicon.svg delete mode 100644 frontend/public/vite.svg diff --git a/frontend/index.html b/frontend/index.html index bf98083..efb2a6b 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2,7 +2,7 @@ - + diff --git a/frontend/public/favicon.svg b/frontend/public/favicon.svg new file mode 100644 index 0000000..80ca4f9 --- /dev/null +++ b/frontend/public/favicon.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/public/vite.svg b/frontend/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/frontend/src/components/displays/DivaScoreDisplay.tsx b/frontend/src/components/displays/DivaScoreDisplay.tsx index 17ab59f..74dd431 100644 --- a/frontend/src/components/displays/DivaScoreDisplay.tsx +++ b/frontend/src/components/displays/DivaScoreDisplay.tsx @@ -72,7 +72,6 @@ const DivaScoreDisplay: React.FC = ({ // eslint-disable-next-line @typescript-eslint/no-explicit-any const formatValue = (value: any, key: string): string => { if (value === null || value === undefined) return "N/A"; - console.log("formatValue called with key:", key); // Handle timestamps if (key === "timestamp" || key === "date") { diff --git a/frontend/src/pages/Landing.tsx b/frontend/src/pages/Landing.tsx index 5ca4459..e3b7898 100644 --- a/frontend/src/pages/Landing.tsx +++ b/frontend/src/pages/Landing.tsx @@ -167,4 +167,4 @@ const Landing = () => { ); }; -export default Landing; \ No newline at end of file +export default Landing; -- cgit v1.2.3