diff --git a/src/ProjectTemplates/Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/api-authorization/login/login.component.ts b/src/ProjectTemplates/Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/api-authorization/login/login.component.ts index d98208a724..b48738b645 100644 --- a/src/ProjectTemplates/Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/api-authorization/login/login.component.ts +++ b/src/ProjectTemplates/Web.Spa.ProjectTemplates/content/Angular-CSharp/ClientApp/src/api-authorization/login/login.component.ts @@ -53,7 +53,7 @@ export class LoginComponent implements OnInit { switch (result.status) { case AuthenticationResultStatus.Redirect: // We replace the location here so that in case the user hits the back - // arrow from within the login page he doesn't get into an infinite + // arrow from within the login page they don't get into an infinite // redirect loop. window.location.replace(result.redirectUrl); break; @@ -120,7 +120,7 @@ export class LoginComponent implements OnInit { private redirectToApiAuthorizationPath(apiAuthorizationPath: string) { // It's important that we do a replace here so that when the user hits the back arrow on the - // browser he gets sent back to where it was on the app instead of to an endpoint on this + // browser they get sent back to where it was on the app instead of to an endpoint on this // component. const redirectUrl = `${window.location.origin}${apiAuthorizationPath}`; window.location.replace(redirectUrl);