From 58636642bfbad3e39de8f2852cc6bb25f46eb9cd Mon Sep 17 00:00:00 2001 From: Steve Hobbs Date: Tue, 24 Mar 2020 21:14:47 +0000 Subject: [PATCH] Removed unused cacheStrategy param from buildAuthorizeUrl --- src/Auth0Client.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/Auth0Client.ts b/src/Auth0Client.ts index 548da7dca..84450ccb5 100644 --- a/src/Auth0Client.ts +++ b/src/Auth0Client.ts @@ -174,12 +174,7 @@ export default class Auth0Client { public async buildAuthorizeUrl( options: RedirectLoginOptions = {} ): Promise { - const { - redirect_uri, - appState, - cacheStrategy, - ...authorizeOptions - } = options; + const { redirect_uri, appState, ...authorizeOptions } = options; const stateIn = encode(createRandomString()); const nonceIn = encode(createRandomString());