Skip to content

Commit

Permalink
fixed failed check
Browse files Browse the repository at this point in the history
  • Loading branch information
Kakar21 committed Sep 8, 2024
1 parent 37aa7a0 commit c73a66a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/app/main/chat/chat.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,12 +177,6 @@ <h1>{{ chatService.currentChannel.name }}</h1>
</div>
</div>
}
<div *ngIf="showModal" class="modal">
<div class="modal-content">
<span class="close" (click)="closeModal()">&times;</span>
<img [src]="modalSrc" alt="Expanded Image Preview">
</div>
</div>
<div class="input-container">
<div class="chat-input">
<textarea #messageInput matInput (input)="onInputChange($event)" [formControl]="formCtrl"
Expand Down
1 change: 0 additions & 1 deletion src/app/main/thread/thread.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ export class ThreadComponent implements OnChanges {
}

if ((this.messageText.trim() !== "") || (imageUrl.trim() !== "")) {
debugger
const message: Message = {
id: "",
avatar: "",
Expand Down

0 comments on commit c73a66a

Please sign in to comment.