diff --git a/client/pages/ProfilePassport.tsx b/client/pages/ProfilePassport.tsx index 2373bf6b..8507941f 100644 --- a/client/pages/ProfilePassport.tsx +++ b/client/pages/ProfilePassport.tsx @@ -44,7 +44,7 @@ const formatDate = (value?: string | null) => { const ProfilePassport = () => { const params = useParams<{ username?: string }>(); const navigate = useNavigate(); - const { user, linkedProviders } = useAuth(); + const { user, linkedProviders, profile: authProfile } = useAuth(); const [profile, setProfile] = useState< (AethexUserProfile & { email?: string | null }) | null