diff --git a/src/app/contact/contact.service.ts b/src/app/contact/contact.service.ts index a363a5dba..05b061197 100644 --- a/src/app/contact/contact.service.ts +++ b/src/app/contact/contact.service.ts @@ -2,7 +2,7 @@ import { AngularFirestore, DocumentReference } from "@angular/fire/compat/firest import { Contact } from "../model/contact.model"; import { Injectable } from "@angular/core"; -@Injectable({ providedIn: 'root' }) +@Injectable({ providedIn: "root" }) export class ContactService { constructor(private database: AngularFirestore) { } @@ -10,4 +10,4 @@ export class ContactService { createContact(contact: Contact): Promise { return this.database.collection("contacts").add(contact); } -} \ No newline at end of file +}