fix - show correct fallback login

This commit is contained in:
Ishaan Jaff 2024-04-11 11:48:03 -07:00
parent 0b964ea7ff
commit f2467ba4e3

View file

@ -67,6 +67,7 @@ const AdminPanel: React.FC<AdminPanelProps> = ({
} catch (error) {
nonSssoUrl = '<your-proxy-url>';
}
nonSssoUrl += '/fallback/login';
const handleAddSSOOk = () => {
@ -513,7 +514,7 @@ const handleInstructionsCancel = () => {
</Modal>
</div>
<Callout title="Login without SSO" color="teal">
If you need to login without sso, you can access <a href= {nonSssoUrl} target="_blank"><b>{nonSssoUrl}/fallback/login</b> </a>
If you need to login without sso, you can access <a href= {nonSssoUrl} target="_blank"><b>{nonSssoUrl}</b> </a>
</Callout>
</Grid>
</div>