import { Link } from 'react-router-dom' import { useAuth } from '../auth/AuthProvider' import { useContinueWithRole } from '../hooks/useContinueWithRole' export function RoleSelectPage() { const { user, roles } = useAuth() const { continueWithRole, busy, busyRole, error } = useContinueWithRole() return (
{user?.name ? `${user.name}, you` : 'You'} have multiple roles. Choose how you want to continue.