I noticed that the results.session_id is showing a red squiggly line under it since it's being recognized as an unknown parameter. How can I inform Angular/TS that it should be considered a valid parameter?
this.requestManager.loginRequest(email, password).subscribe(
result => {
localStorage.setItem('session_id', result.session_id)
this.router.navigate(['/discover'])
},
error => {},
() => {}
)