You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I stumbled upon a bug where the app will not be rendered (blank white screen) when the user doesn't have First name and/or Last name setup in Azure AD.
In this scenario the Azure AD authentication succeeds, but react-adal will not render the app (the require below will not run)
import { runWithAdal } from 'react-adal';
import { authContext } from './config/adalConfig';
const DO_NOT_LOGIN = false;
// auth with Azure AD. ADAL will handle entire auth
runWithAdal(authContext, () => {
// eslint-disable-next-line
require('./indexApp.js');
}, DO_NOT_LOGIN);
Hi,
I stumbled upon a bug where the app will not be rendered (blank white screen) when the user doesn't have First name and/or Last name setup in Azure AD.
In this scenario the Azure AD authentication succeeds, but react-adal will not render the app (the require below will not run)
This is my adal config:
The text was updated successfully, but these errors were encountered: