import Grid from '@mui/material/Grid'; import Stack from '@mui/material/Stack'; import PageTitle from 'components/PageTitle'; import Container from 'components/Container'; import useFormatMessage from 'hooks/useFormatMessage'; import useSamlAuthProvider from 'hooks/useSamlAuthProvider'; import SamlConfiguration from './SamlConfiguration'; import RoleMappings from './RoleMappings'; import useSamlAuthProviders from 'hooks/useSamlAuthProviders.ee'; function AuthenticationPage() { const formatMessage = useFormatMessage(); const { providers } = useSamlAuthProviders(); const samlAuthProviderId = providers[0]?.id; const { data, loading: isProviderLoading } = useSamlAuthProvider({ samlAuthProviderId, }); const provider = data?.data; return ( {formatMessage('authenticationPage.title')} ); } export default AuthenticationPage;