Skip to content

Commit

Permalink
docs: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Nov 13, 2023
1 parent 515d3e9 commit 45b777e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/stream-chat-angular/src/lib/channel.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class ChannelService<
*
* Our platform documentation covers the topic of [channel events](https://getstream.io/chat/docs/javascript/event_object/?language=javascript#events) in depth.
*
* By default if an error occurs during channel load, the Observable will emit an error, which will close the stream. Users will reload the page to be able to reinitialize the `ChannelService`. If you don't want the streams to be closed, you can pass `options.keepAliveChannels$OnError = true` to the `init` method. In that case the `channelQueryState$` stream will emit the status of the latest channel load request.
* By default if an error occurs during channel load, the Observable will emit an error, which will close the stream. Users will have to reload the page to be able to reinitialize the `ChannelService`. If you don't want the streams to be closed, you can pass `options.keepAliveChannels$OnError = true` to the `init` method. In that case the `channelQueryState$` stream will emit the status of the latest channel load request.
*/
channels$: Observable<Channel<T>[] | undefined>;
/**
Expand Down

0 comments on commit 45b777e

Please sign in to comment.