import React from 'react' import Modal from 'src/components/Modal' import { Info2, P } from 'src/components/typography' import { Button } from 'src/components/buttons' import classes from '../UserManagement.module.css' const ChangeRoleModal = ({ state, dispatch }) => { const handleClose = () => { dispatch({ type: 'close', payload: 'showFIDOModal' }) } return ( About FIDO authentication

This feature is only available for websites with configured domains, and we detected that a domain is not configured at the moment.

Make sure that a domain is configured for this website and try again later.

) } export default ChangeRoleModal