Skip to content

Commit

Permalink
example: remove unnecessary code
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Sep 30, 2024
1 parent 3a2da83 commit ad45c8d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions projects/sample-app/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
TemplateRef,
ViewChild,
} from '@angular/core';
import { Observable, Subject } from 'rxjs';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import {
ChatClientService,
Expand Down Expand Up @@ -32,7 +32,6 @@ export class AppComponent implements AfterViewInit {
@ViewChild('avatar') avatarTemplate!: TemplateRef<AvatarContext>;
theme$: Observable<string>;
counter = 0;
sendMessageOutsideTrigger$ = new Subject<void>();

constructor(
private chatService: ChatClientService,
Expand Down

0 comments on commit ad45c8d

Please sign in to comment.