Skip to content

Commit

Permalink
fixing router
Browse files Browse the repository at this point in the history
  • Loading branch information
div360 committed Oct 3, 2024
1 parent 052af81 commit c56105f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 55 deletions.
54 changes: 0 additions & 54 deletions .github/workflows/c1_staging_deployment.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/auth/login/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class LoginComponent implements OnInit {

private redirect(redirectUri: string | undefined, code:string): void {
if (redirectUri) {
this.router.navigate([redirectUri + `?code=${code}`] );
this.router.navigate([redirectUri], { queryParams: { code: code } });
// eslint-disable-next-line no-console
console.log('redirectUri', redirectUri + `?code=${code}`);
} else {
Expand Down

0 comments on commit c56105f

Please sign in to comment.