import React from 'react'; const UserProfile: React.FC = () => { // This component is no longer used in the anonymous auth model. // Returning null to prevent it from rendering. return null; }; export default UserProfile;