forked from mystiq/hydrogen-web
Remove unwanted if
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
5ca732341a
commit
0e7a9e224c
1 changed files with 1 additions and 3 deletions
|
@ -134,9 +134,7 @@ export class LoginViewModel extends ViewModel {
|
|||
|
||||
_createLoadViewModel() {
|
||||
this._loadViewModelSubscription = this.disposeTracked(this._loadViewModelSubscription);
|
||||
if (this._loadViewModel) {
|
||||
this._loadViewModel = this.disposeTracked(this._loadViewModel);
|
||||
}
|
||||
this._loadViewModel = this.disposeTracked(this._loadViewModel);
|
||||
this._loadViewModel = this.track(
|
||||
new SessionLoadViewModel(
|
||||
this.childOptions({
|
||||
|
|
Loading…
Reference in a new issue