diff --git a/plugins/auth-backend/src/lib/oauth/helpers.ts b/plugins/auth-backend/src/lib/oauth/helpers.ts index 17e3769d21..2bf8fa2520 100644 --- a/plugins/auth-backend/src/lib/oauth/helpers.ts +++ b/plugins/auth-backend/src/lib/oauth/helpers.ts @@ -36,7 +36,7 @@ export const readState = (stateString: string): OAuthState => { export const encodeState = (state: OAuthState): string => { const stateString = new URLSearchParams( - pickBy(state, value => value !== undefined), + pickBy(state, value => value !== undefined), ).toString(); return Buffer.from(stateString, 'utf-8').toString('hex');