Skip to content

Commit b8e03ec

Browse files
committed
fix lint issues
1 parent cd5397a commit b8e03ec

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

projects/stream-chat-angular/src/lib/message-input/message-input.component.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { BehaviorSubject, Subject, of } from 'rxjs';
1313
import {
1414
Attachment,
1515
Channel,
16-
ChannelResponse,
1716
DraftMessage,
1817
MessageResponse,
1918
UserResponse,

projects/stream-chat-angular/src/lib/message-input/message-input.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,6 @@ export class MessageInputComponent
248248
);
249249
this.subscriptions.push(
250250
this.channelService.channelSwitchState$.subscribe((state) => {
251-
console.log('channelSwitchState', state);
252251
this.isChannelChangeResetInProgress = state === 'start';
253252
})
254253
);
@@ -655,7 +654,6 @@ export class MessageInputComponent
655654
* - If a thread message is loaded, and the input isn't in thread mode or parent ids don't match, the draft is ignored.
656655
*/
657656
loadDraft(draft: DraftResponse) {
658-
console.log('input load draft', draft);
659657
if (
660658
this.channel?.cid !== draft.channel_cid ||
661659
draft?.message?.parent_id !== this.parentMessageId ||
@@ -673,7 +671,6 @@ export class MessageInputComponent
673671
this.attachmentService.createFromAttachments(
674672
draft?.message?.attachments || []
675673
);
676-
console.log('textareaValue', this.textareaValue);
677674
this.channelService.selectMessageToQuote(draft.quoted_message);
678675
this.isLoadingDraft = false;
679676
}

0 commit comments

Comments
 (0)