From 5de525a52919731ea1fc54da7131d261f6f4e720 Mon Sep 17 00:00:00 2001 From: Peter Maquiran Date: Thu, 19 Aug 2021 17:01:24 +0100 Subject: [PATCH] improve --- src/app/shared/chat/messages/messages.page.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/app/shared/chat/messages/messages.page.ts b/src/app/shared/chat/messages/messages.page.ts index 8f6e5e162..43f8a4ed1 100644 --- a/src/app/shared/chat/messages/messages.page.ts +++ b/src/app/shared/chat/messages/messages.page.ts @@ -1,13 +1,11 @@ import { AfterViewChecked, Component, ElementRef, Input, OnChanges, OnInit, SimpleChanges, ViewChild } from '@angular/core'; -import { AnimationController, ModalController, NavParams, PopoverController } from '@ionic/angular'; -import { Status } from 'src/app/models/chat/status.model'; +import { AnimationController, ModalController, PopoverController } from '@ionic/angular'; import { AlertService } from 'src/app/services/alert.service'; import { AuthService } from 'src/app/services/auth.service'; import { ChatService } from 'src/app/services/chat.service'; import { ToastService } from 'src/app/services/toast.service'; import { ChatOptionsPopoverPage } from 'src/app/shared/popover/chat-options-popover/chat-options-popover.page'; import { MessagesOptionsPage } from 'src/app/shared/popover/messages-options/messages-options.page'; -import { ProfileComponent } from '../../headers/header-no-search/profile/profile.page'; import { ContactsPage } from '../new-group/contacts/contacts.page'; import { Router } from '@angular/router'; import { connection } from 'src/app/services/socket/synchro.service';