fix: revert OIDC advanced param to URL-based heuristic per design intent

This commit is contained in:
harsh mahajan
2026-05-21 12:43:32 +05:30
parent a247ab7e92
commit ac30ff1f6c
@@ -148,7 +148,7 @@
}
function isOidcAdvancedParam(id: string): boolean {
return id === 'authorizationURL' || id === 'tokenUrl' || id === 'userInfoUrl';
return id !== 'wellKnownURL' && id.toLowerCase().includes('url');
}
async function handleP8FileUpload(id: string, event: Event) {