diff --git a/native/chat/composed-message.react.js b/native/chat/composed-message.react.js --- a/native/chat/composed-message.react.js +++ b/native/chat/composed-message.react.js @@ -20,7 +20,7 @@ } from './chat-constants'; import { useComposedMessageMaxWidth } from './composed-message-width'; import { FailedSend } from './failed-send.react'; -import InlineSidebar from './inline-sidebar.react'; +import InlineEngagement from './inline-engagement.react'; import { MessageHeader } from './message-header.react'; import { useNavigateToSidebar } from './sidebar-navigation'; import SwipeableMessage from './swipeable-message.react'; @@ -140,7 +140,7 @@ const position = isViewer ? 'right' : 'left'; inlineSidebar = ( - diff --git a/native/chat/inline-sidebar.react.js b/native/chat/inline-engagement.react.js rename from native/chat/inline-sidebar.react.js rename to native/chat/inline-engagement.react.js --- a/native/chat/inline-sidebar.react.js +++ b/native/chat/inline-engagement.react.js @@ -15,7 +15,7 @@ +threadInfo: ThreadInfo, +position: 'left' | 'right', }; -function InlineSidebar(props: Props): React.Node { +function InlineEngagement(props: Props): React.Node { const { threadInfo, position } = props; const { repliesText } = useInlineEngagementText(threadInfo); @@ -74,4 +74,4 @@ }, }; -export default InlineSidebar; +export default InlineEngagement; diff --git a/native/chat/robotext-message.react.js b/native/chat/robotext-message.react.js --- a/native/chat/robotext-message.react.js +++ b/native/chat/robotext-message.react.js @@ -16,7 +16,7 @@ import type { VerticalBounds } from '../types/layout-types'; import { AnimatedView } from '../types/styles'; import type { ChatNavigationProp } from './chat.react'; -import InlineSidebar from './inline-sidebar.react'; +import InlineEngagement from './inline-engagement.react'; import { InnerRobotextMessage } from './inner-robotext-message.react'; import { robotextMessageTooltipHeight } from './robotext-message-tooltip-modal.react'; import { Timestamp } from './timestamp.react'; @@ -56,7 +56,7 @@ const position = isViewer ? 'right' : 'left'; inlineSidebar = ( -