Skip to content

Commit 5a9d416

Browse files
committed
chore: remove unused imports
1 parent fd14657 commit 5a9d416

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

package/src/components/ChannelList/hooks/usePaginatedChannels.ts

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
import { useEffect, useMemo, useRef, useState } from 'react';
22

3-
import type {
4-
Channel,
5-
ChannelFilters,
6-
ChannelOptions,
7-
ChannelSort,
8-
MessageResponse,
9-
} from 'stream-chat';
3+
import type { Channel, ChannelFilters, ChannelOptions, ChannelSort } from 'stream-chat';
104

115
import { useActiveChannelsRefContext } from '../../../contexts/activeChannelsRefContext/ActiveChannelsRefContext';
126
import { useChatContext } from '../../../contexts/chatContext/ChatContext';
@@ -16,7 +10,6 @@ import { getChannelsForFilterSort } from '../../../store/apis/getChannelsForFilt
1610
import type { DefaultStreamChatGenerics } from '../../../types/types';
1711
import { ONE_SECOND_IN_MS } from '../../../utils/date';
1812
import { DBSyncManager } from '../../../utils/DBSyncManager';
19-
import { MessageStatusTypes } from '../../../utils/utils';
2013
import { MAX_QUERY_CHANNELS_LIMIT } from '../utils';
2114

2215
const waitSeconds = (seconds: number) =>

0 commit comments

Comments
 (0)