diff --git a/src/app/pages/chat/chat.page.html b/src/app/pages/chat/chat.page.html index e68af0924..2cfdd3cb6 100644 --- a/src/app/pages/chat/chat.page.html +++ b/src/app/pages/chat/chat.page.html @@ -3,7 +3,7 @@ - + @@ -23,7 +23,7 @@ - diff --git a/src/app/pages/chat/messages/contacts/contacts.module.ts b/src/app/pages/chat/messages/contacts/contacts.module.ts index 4da67c6e9..ca2f6bc11 100644 --- a/src/app/pages/chat/messages/contacts/contacts.module.ts +++ b/src/app/pages/chat/messages/contacts/contacts.module.ts @@ -21,6 +21,6 @@ import { FilterPipe } from 'src/app/pipes/filter.pipe'; ContactsPageRoutingModule, PipesModule, ], - declarations: [ContactsPage, FilterPipe] + declarations: [ContactsPage] }) export class ContactsPageModule {} diff --git a/src/app/shared/chat/messages/contacts/contacts.module.ts b/src/app/shared/chat/messages/contacts/contacts.module.ts index 98d3374bb..56e3bca48 100644 --- a/src/app/shared/chat/messages/contacts/contacts.module.ts +++ b/src/app/shared/chat/messages/contacts/contacts.module.ts @@ -22,6 +22,6 @@ import { PipesModule } from 'src/app/pipes/pipes.module'; PipesModule, ], exports: [ContactsPage], - declarations: [ContactsPage, FilterPipe] + declarations: [ContactsPage] }) export class ContactsPageModule {}