Put the reset method in the right scope...

pull/21833/head
Luke Barnard 2017-05-26 17:27:31 +01:00
parent 9311b9012a
commit ac44151e2a
1 changed files with 3 additions and 3 deletions

View File

@ -72,10 +72,10 @@ class SessionStore extends Store {
this.reset();
break;
}
}
reset() {
this._state = Object.assign({}, INITIAL_STATE);
}
reset() {
this._state = Object.assign({}, INITIAL_STATE);
}
getCachedPassword() {