Skip to content

Commit b659492

Browse files
committed
docs: remove change detection refs from docs comment
1 parent 736e7fc commit b659492

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

projects/stream-chat-angular/src/lib/channel.service.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ export class ChannelService<
5858
hasMoreChannels$: Observable<boolean>;
5959
/**
6060
* Emits the currently loaded and [watched](/chat/docs/javascript/watch_channel/) channel list.
61-
*
62-
* :::important
63-
* If you want to subscribe to channel events, you need to manually reenter Angular's change detection zone, our [Change detection guide](/chat/docs/sdk/angular/concepts/change-detection/) explains this in detail.
64-
* :::
6561
*/
6662
channels$: Observable<Channel<T>[] | undefined>;
6763
/**
@@ -71,10 +67,6 @@ export class ChannelService<
7167
/**
7268
* Emits the currently active channel.
7369
*
74-
* :::important
75-
* If you want to subscribe to channel events, you need to manually reenter Angular's change detection zone, our [Change detection guide](/chat/docs/sdk/angular/concepts/change-detection/) explains this in detail.
76-
* :::
77-
*
7870
* The active channel will always be marked as read when a new message is received
7971
*/
8072
activeChannel$: Observable<Channel<T> | undefined>;

projects/stream-chat-angular/src/lib/chat-client.service.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ export class ChatClientService<
3838
chatClient!: StreamChat<T>;
3939
/**
4040
* Emits [`ClientEvent`](https://github.com/GetStream/stream-chat-angular/blob/master/projects/stream-chat-angular/src/lib/chat-client.service.ts) events. The platform documentation covers [the list of client, user presence and notification events](/chat/docs/javascript/event_object/).
41-
* :::important
42-
* For performance reasons this Observable operates outside of the Angular change detection zone. If you subscribe to it, you need to manually reenter Angular's change detection zone, our [Change detection guide](/chat/docs/sdk/angular/concepts/change-detection/) explains this in detail.
43-
* :::
4441
*/
4542
events$: Observable<ClientEvent<T>>;
4643
/**

0 commit comments

Comments
 (0)