From ebed6c078c0f6bc56fc65a19bd554225c36cd411 Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Sat, 21 Feb 2026 02:32:52 +0100 Subject: [PATCH] design: improve authenticated status visibility with Verified icon and TRACKING label --- frontend/src/pages/Dashboard.tsx | 42 ++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 15 deletions(-) diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index f80e991..c40c9bf 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -509,22 +509,34 @@ const AccountRow: React.FC<{ )} +import VerifiedUserIcon from '@mui/icons-material/VerifiedUser'; + +// ... (inside AccountRow) + {/* Scraper Auth Button - Controls the optional cooldown tracking */} - - - {account.steamLoginSecure && !account.authError ? : (account.authError ? : )} - + + + + {account.steamLoginSecure && !account.authError ? : (account.authError ? : )} + + {account.steamLoginSecure && !account.authError && ( + + TRACKING + + )} +