diff --git a/src/app/core/components/contact/contact.component.ts b/src/app/core/components/contact/contact.component.ts
index 4e8957b71464c359769446b20cd29c9448b7ac75..ceea450bf11500627bb2c0a2e7992fb86d206763 100644
--- a/src/app/core/components/contact/contact.component.ts
+++ b/src/app/core/components/contact/contact.component.ts
@@ -39,12 +39,9 @@ export class ContactComponent implements OnInit {
   }
 
   send() {
-    console.log(this.form.value);
     const email = new Email(this.form.value);
-    console.log(email);
     this._emailService.send(email).subscribe(
       (res) => {
-        console.log(res);
         this._notificationService.notify(
           {
             type: 'success',
@@ -54,7 +51,6 @@ export class ContactComponent implements OnInit {
         this.form.reset();
       },
       (err) => {
-        console.log(err);
         this._notificationService.notify(
           {
             type: 'error',
@@ -67,7 +63,6 @@ export class ContactComponent implements OnInit {
 
   get emailConfirmationIsCorrect(): boolean {
     const value = this.form.controls.email.value === this.form.controls.emailConfirmation.value ? true : false;
-    console.log(value);
     return value;
   }
 
@@ -85,7 +80,6 @@ export class ContactComponent implements OnInit {
   formIsInvalid() {
     const controls = this.form.controls;
     const value = this.form.invalid || this.emailConfirmationError;
-    console.log('FormInvalid: ', value);
     return value;
   }