diff --git a/frontend-modern/src/components/Settings/OIDCPanel.tsx b/frontend-modern/src/components/Settings/OIDCPanel.tsx index c1810c218..2f152589b 100644 --- a/frontend-modern/src/components/Settings/OIDCPanel.tsx +++ b/frontend-modern/src/components/Settings/OIDCPanel.tsx @@ -324,7 +324,11 @@ export const OIDCPanel: Component = (props) => { class={controlClass()} disabled={isEnvLocked() || saving()} /> -

If left blank, Pulse will use {config()?.defaultRedirect}.

+

+ {config()?.defaultRedirect + ? `If left blank, Pulse will use ${config()?.defaultRedirect}` + : 'Set PUBLIC_URL environment variable or enter redirect URL manually'} +

@@ -432,10 +436,12 @@ export const OIDCPanel: Component = (props) => {
-
- Redirect URL registered with your IdP must match Pulse:{' '} - {config()?.defaultRedirect || ''} -
+ +
+ Redirect URL registered with your IdP must match Pulse:{' '} + {config()?.defaultRedirect} +
+