Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uowis committed May 9, 2024
1 parent 1d5383e commit 95b387f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/server/lib/OIDCConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ export class OIDCConfig {
delete mreq.session.oidc;

// Convert absolute URL into relative, since it will be prefixed further down the line
let targetURL = new URL(targetUrl as string);
const targetURL = new URL(targetUrl as string);
let targetUrlRelative = targetURL.pathname;
if (targetURL.searchParams.toString()) targetUrlRelative += "?" + targetURL.searchParams.toString();

Check warning on line 187 in app/server/lib/OIDCConfig.ts

View workflow job for this annotation

GitHub Actions / build_and_test (3.9, 18.x, :lint:python:client:common:smoke:stubs:)

Expected { after 'if' condition

Check warning on line 187 in app/server/lib/OIDCConfig.ts

View workflow job for this annotation

GitHub Actions / build_and_test (:lint:python:client:common:smoke:, 18.x, 3.10)

Expected { after 'if' condition

Check warning on line 187 in app/server/lib/OIDCConfig.ts

View workflow job for this annotation

GitHub Actions / build_and_test (:lint:python:client:common:smoke:, 18.x, 3.11)

Expected { after 'if' condition

Expand Down

0 comments on commit 95b387f

Please sign in to comment.