Fix logic in easy auth docs

Signed-off-by: Alex Crome <afscrome@users.noreply.github.com>
This commit is contained in:
Alex Crome
2023-06-17 09:36:39 +01:00
parent 0d32059381
commit ac9c83d9dc
+1 -1
View File
@@ -81,7 +81,7 @@ const app = createApp({
components: {
SignInPage: props => {
const configApi = useApi(configApiRef);
if (configApi.getString('auth.environment') === 'development')
if (configApi.getString('auth.environment') !== 'development')
return <ProxiedSignInPage {...props} provider="azure-easyauth" />;
}
return (