Skip to content

Commit

Permalink
fix: improve code
Browse files Browse the repository at this point in the history
  • Loading branch information
pamapa committed Jul 22, 2021
1 parent 04831f6 commit 5c2d93f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ResponseValidator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class ResponseValidator {
async validateSigninResponse(state: SigninState, response: SigninResponse) {
Log.debug("ResponseValidator.validateSigninResponse");

response = await this._processSigninParams(state, response);
response = this._processSigninParams(state, response);
Log.debug("ResponseValidator.validateSigninResponse: state processed");

response = await this._validateTokens(state, response);
Expand Down
3 changes: 2 additions & 1 deletion src/WebStorageStateStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.

import { Log } from './utils';
import { StateStore } from './StateStore';

export class WebStorageStateStore {
export class WebStorageStateStore implements StateStore {
private _store: Storage
private _prefix: string

Expand Down

0 comments on commit 5c2d93f

Please sign in to comment.