From 15fd272ce3099d1b2632f100c400d2ae6e392275 Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Mon, 12 Oct 2020 14:40:06 -0400 Subject: [PATCH] Remove unused `tap` import --- apps/chat-room/src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/chat-room/src/app/app.component.ts b/apps/chat-room/src/app/app.component.ts index 8647cc5..cf71f46 100644 --- a/apps/chat-room/src/app/app.component.ts +++ b/apps/chat-room/src/app/app.component.ts @@ -1,7 +1,7 @@ import { Component } from '@angular/core'; import { MessagesService } from './messages.service'; import { Observable } from 'rxjs'; -import { map, tap } from 'rxjs/operators'; +import { map } from 'rxjs/operators'; import { Message } from '@chat-room/api-interfaces'; @Component({