Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 1046471

Browse files
committed
chore: fix lint errors
1 parent 50933e1 commit 1046471

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ export class KeycloakClient implements KeycloakInstance {
342342

343343
this.callbackStorage!.add(callbackState);
344344

345-
Object.keys(rest).forEach((key) => {
345+
Object.keys(rest).forEach(key => {
346346
params.set(key, `${rest[key]}`);
347347
});
348348

src/utils/url.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export function extractQuerystringParameters(querystring: string) {
4646
return querystring
4747
.replace('?', '')
4848
.split('&')
49-
.map((segment) => segment.split('='))
49+
.map(segment => segment.split('='))
5050
.reduce((obj, [key, value]) => {
5151
obj[decode(key)] = decode(value);
5252
return obj;

0 commit comments

Comments
 (0)