removed debug messages now that issue is addressed

pull/8/head
Chris Veilleux 2019-05-29 13:13:26 -05:00
parent 5fef308caa
commit 4563f41f9b
3 changed files with 0 additions and 4 deletions

View File

@ -21,7 +21,6 @@ export class AuthenticationStepComponent implements OnInit {
constructor(private apiService: ApiService) { }
ngOnInit() {
console.log('authentication step: ' + environment.facebookClientId);
this.federatedLoginText = 'To use this option, you must allow the ' +
'provider to share your email address with Mycroft.';
this.internalLoginText = 'Login credentials stored on Mycroft ' +

View File

@ -91,7 +91,6 @@ export class NewAccountComponent implements OnInit {
}
ngOnInit() {
console.log(environment.facebookClientId);
this.buildForm();
this.route.queryParams.subscribe(
(params) => { this.evaluateQueryParams(params); }

View File

@ -18,8 +18,6 @@ export class FacebookButtonComponent {
constructor(private authService: AuthService) { }
facebookLogin() {
console.log('facebook login: ' + environment.facebookClientId);
console.log(this.authService);
const platformProvider = FacebookLoginProvider.PROVIDER_ID;
this.authService.signIn(platformProvider).then(
(userData) => {