Skip to content

Commit 8336bbd

Browse files
committed
example: remove test code from sample app
1 parent 34caac0 commit 8336bbd

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

projects/sample-app/src/app/app.component.html

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,3 @@
4545
<ng-template #emojiPickerTemplate let-emojiInput$="emojiInput$">
4646
<app-emoji-picker [emojiInput$]="emojiInput$"></app-emoji-picker>
4747
</ng-template>
48-
49-
<ng-template #avatar>
50-
<div>{{ counter }}</div>
51-
</ng-template>

projects/sample-app/src/app/app.component.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,23 +47,19 @@ export class AppComponent implements AfterViewInit {
4747
void this.channelService.init({
4848
type: 'messaging',
4949
members: { $in: [environment.userId] },
50-
// id: { $eq: '1af49475-b988-479e-9444-2a10aab707f0' },
5150
});
5251
this.streamI18nService.setTranslation();
5352
this.channelService.activeParentMessage$
5453
.pipe(map((m) => !!m))
5554
.subscribe((isThreadOpen) => (this.isThreadOpen = isThreadOpen));
5655
this.themeVersion = themeService.themeVersion;
5756
this.theme$ = themeService.theme$;
58-
59-
// setInterval(() => this.counter++, 1000);
6057
}
6158

6259
ngAfterViewInit(): void {
6360
this.customTemplateService.emojiPickerTemplate$.next(
6461
this.emojiPickerTemplate
6562
);
66-
// this.customTemplateService.avatarTemplate$.next(this.avatarTemplate);
6763
}
6864

6965
closeMenu() {

0 commit comments

Comments
 (0)