Add unblocked timeline event

This commit is contained in:
Jamie Kyle 2024-04-12 10:07:57 -07:00 committed by GitHub
parent 92eb036196
commit ad8020848f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 333 additions and 10 deletions

View file

@ -42,6 +42,7 @@ export type SmartTimelineItemProps = {
containerWidthBreakpoint: WidthBreakpoint;
conversationId: string;
isBlocked: boolean;
isGroup: boolean;
isOldestTimelineItem: boolean;
messageId: string;
nextMessageId: undefined | string;
@ -64,6 +65,7 @@ export const SmartTimelineItem = memo(function SmartTimelineItem(
containerWidthBreakpoint,
conversationId,
isBlocked,
isGroup,
isOldestTimelineItem,
messageId,
nextMessageId,
@ -193,6 +195,7 @@ export const SmartTimelineItem = memo(function SmartTimelineItem(
i18n={i18n}
interactionMode={interactionMode}
isBlocked={isBlocked}
isGroup={isGroup}
theme={theme}
platform={platform}
blockGroupLinkRequests={blockGroupLinkRequests}