Skip to content

Commit

Permalink
Merge pull request #432 from intersective/bugfix/not-passing-header-d…
Browse files Browse the repository at this point in the history
…ata-correctly-to-graphql

[6603] in auth login passing context as variables.
  • Loading branch information
sasangachathumal authored Jun 4, 2024
2 parents 4ddbf44 + 709438d commit fe0d8c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class AuthService {
service?: string;
}): Observable<any> {
this.logout();
return this.authenticate({...data, ...{service: 'LOGIN'}}).pipe(
return this.authenticate({...data}).pipe(
map(res => this._handleAuthResponse(res)),
);
}
Expand Down

0 comments on commit fe0d8c4

Please sign in to comment.