diff --git a/frontend/components/SecretList.tsx b/frontend/components/SecretList.tsx index cbb10709..9be74dc0 100644 --- a/frontend/components/SecretList.tsx +++ b/frontend/components/SecretList.tsx @@ -1,3 +1,4 @@ +import VisibilityOffIcon from '@mui/icons-material/VisibilityOff'; import Faction from "@/classes/Faction" import Secret from "@/classes/Secret" import { useGameContext } from "@/contexts/GameContext" @@ -11,13 +12,22 @@ const SecretList = ({ faction }: { faction: Faction }) => { ) return ( -
+
+ ) }