Skip to content

Commit 8dc70c6

Browse files
committed
fix: take import from rxjs
1 parent ba824c2 commit 8dc70c6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Injectable, NgZone } from '@angular/core';
2-
import { BehaviorSubject, Observable, ReplaySubject, take } from 'rxjs';
2+
import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
33
import {
44
Channel,
55
ChannelFilters,
@@ -14,6 +14,7 @@ import { AppSettings, Event, StreamChat, TokenOrProvider } from 'stream-chat';
1414
import { version } from '../assets/version';
1515
import { NotificationService } from './notification.service';
1616
import { DefaultStreamChatGenerics } from './types';
17+
import { take } from 'rxjs/operators';
1718

1819
export type ClientEvent<
1920
T extends DefaultStreamChatGenerics = DefaultStreamChatGenerics

0 commit comments

Comments
 (0)