Account
View and manage your account.
{user.name}
{user.email}
{user.emailVerified ? (
) : (
)}
{user.role === 'admin' && (
)}
Joined:
Active sessions
{sessions && sessions.length > 0 ? (
sessions.map((session) => {
const os = /* */;
const isCurrentSession = /* */;
return (
Time:
OS: {os.name || 'Unknown'}
IP: {session.ipAddress || 'Unknown'}
{isCurrentSession && (
Your current session
)}
);
})
) : (
No information about active sessions.
)}