Skip to content

Commit

Permalink
Removed unused cacheStrategy param from buildAuthorizeUrl
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Hobbs committed Mar 24, 2020
1 parent 891a749 commit 5863664
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Auth0Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,7 @@ export default class Auth0Client {
public async buildAuthorizeUrl(
options: RedirectLoginOptions = {}
): Promise<string> {
const {
redirect_uri,
appState,
cacheStrategy,
...authorizeOptions
} = options;
const { redirect_uri, appState, ...authorizeOptions } = options;

const stateIn = encode(createRandomString());
const nonceIn = encode(createRandomString());
Expand Down

0 comments on commit 5863664

Please sign in to comment.