Skip to content

Commit 1baccae

Browse files
Post-merge fixes 2
1 parent bee3531 commit 1baccae

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/components/Reactions/ReactionsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414

1515
import { MAX_MESSAGE_REACTIONS_TO_FETCH } from '../Message/hooks';
1616

17-
import type { ReactionGroupResponse, ReactionResponse, ReactionSort } from 'stream-chat';
17+
import type { ReactionGroupResponse, ReactionResponse } from 'stream-chat';
1818
import type { ReactionOptions } from './reactionOptions';
1919
import type {
2020
ReactionDetailsComparator,

src/components/Reactions/ReactionsListModal.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,7 @@ import { MessageContextValue, useMessageContext } from '../../context';
1212
import { ReactionSort } from 'stream-chat';
1313

1414
export type ReactionsListModalProps = ModalProps &
15-
Partial<
16-
Pick<
17-
MessageContextValue,
18-
'handleFetchReactions' | 'reactionDetailsSort'
19-
>
20-
> & {
15+
Partial<Pick<MessageContextValue, 'handleFetchReactions' | 'reactionDetailsSort'>> & {
2116
reactions: ReactionSummary[];
2217
selectedReactionType: ReactionType;
2318
onSelectedReactionTypeChange?: (reactionType: ReactionType) => void;

0 commit comments

Comments
 (0)