Skip to content

Commit 55faa76

Browse files
authored
Merge pull request #97 from lukaselmer/patch-1
Fix tsc noUnusedParameters validation
2 parents 80258be + 7c859d8 commit 55faa76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/angular2-token.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export class Angular2TokenService implements CanActivate {
164164

165165
let observ = this.post(this._constructUserPath() + this._options.signInPath, body);
166166

167-
observ.subscribe(res => this._currentUserData = res.json().data, error => null);
167+
observ.subscribe(res => this._currentUserData = res.json().data, _error => null);
168168

169169
return observ;
170170
}

0 commit comments

Comments
 (0)