Skip to content

Commit

Permalink
fix: take import from rxjs
Browse files Browse the repository at this point in the history
  • Loading branch information
szuperaz committed Nov 16, 2023
1 parent ba824c2 commit 8dc70c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/stream-chat-angular/src/lib/chat-client.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Injectable, NgZone } from '@angular/core';
import { BehaviorSubject, Observable, ReplaySubject, take } from 'rxjs';
import { BehaviorSubject, Observable, ReplaySubject } from 'rxjs';
import {
Channel,
ChannelFilters,
Expand All @@ -14,6 +14,7 @@ import { AppSettings, Event, StreamChat, TokenOrProvider } from 'stream-chat';
import { version } from '../assets/version';
import { NotificationService } from './notification.service';
import { DefaultStreamChatGenerics } from './types';
import { take } from 'rxjs/operators';

export type ClientEvent<
T extends DefaultStreamChatGenerics = DefaultStreamChatGenerics
Expand Down

0 comments on commit 8dc70c6

Please sign in to comment.