From 59244e2b54dfd6a0e0ea1fc9b11967335978365a Mon Sep 17 00:00:00 2001 From: Nils Pukropp Date: Sat, 21 Feb 2026 02:33:23 +0100 Subject: [PATCH] fix: add missing VerifiedUserIcon import to resolve ReferenceError --- frontend/src/pages/Dashboard.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/pages/Dashboard.tsx b/frontend/src/pages/Dashboard.tsx index c40c9bf..f88643a 100644 --- a/frontend/src/pages/Dashboard.tsx +++ b/frontend/src/pages/Dashboard.tsx @@ -24,6 +24,7 @@ import PublicIcon from '@mui/icons-material/Public'; import ShieldIcon from '@mui/icons-material/Shield'; import GppBadIcon from '@mui/icons-material/GppBad'; import PeopleIcon from '@mui/icons-material/People'; +import VerifiedUserIcon from '@mui/icons-material/VerifiedUser'; import { useAccounts, type Account } from '../hooks/useAccounts'; import { useAppTheme } from '../theme/ThemeContext'; import type { ThemeType } from '../theme/SteamTheme';