removed debug messages now that issue is addressed
parent
5fef308caa
commit
4563f41f9b
|
@ -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 ' +
|
||||
|
|
|
@ -91,7 +91,6 @@ export class NewAccountComponent implements OnInit {
|
|||
}
|
||||
|
||||
ngOnInit() {
|
||||
console.log(environment.facebookClientId);
|
||||
this.buildForm();
|
||||
this.route.queryParams.subscribe(
|
||||
(params) => { this.evaluateQueryParams(params); }
|
||||
|
|
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue