Skip to content

Commit 869b98a

Browse files
committed
Fix OIDC integration lowercasing endpoints URLs
1 parent 11d9e7d commit 869b98a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/oidc/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ type OIDCProps = {
4040
export type OIDCAction = { action: 'save.config' };
4141

4242
const getDomainWithHttps = (url: string): string => {
43-
const sanitizedURL = url.trim().toLowerCase();
43+
const sanitizedURL = url.trim();
4444
if (sanitizedURL.startsWith('https://')) {
4545
return sanitizedURL;
4646
} else if (sanitizedURL.startsWith('http://')) {

0 commit comments

Comments
 (0)