Formatting: A few more changes

This commit is contained in:
Scott Nonnenberg 2023-05-09 18:23:56 -07:00 committed by GitHub
parent b4caf67bf9
commit 2177a79080
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 393 additions and 159 deletions

View file

@ -105,6 +105,7 @@ export type OwnProps = Readonly<{
isSignalConversation?: boolean;
recordingState: RecordingState;
messageCompositionId: string;
shouldHidePopovers?: boolean;
isSMSOnly?: boolean;
left?: boolean;
linkPreviewLoading: boolean;
@ -225,7 +226,6 @@ export function CompositionArea({
isDisabled,
isSignalConversation,
messageCompositionId,
showToast,
pushPanelForConversation,
platform,
processAttachments,
@ -234,6 +234,8 @@ export function CompositionArea({
sendMultiMediaMessage,
setComposerFocus,
setQuoteByMessageId,
shouldHidePopovers,
showToast,
theme,
// AttachmentList
@ -931,6 +933,7 @@ export function CompositionArea({
onTextTooLong={onTextTooLong}
platform={platform}
sendCounter={sendCounter}
shouldHidePopovers={shouldHidePopovers}
skinTone={skinTone}
sortedGroupMembers={sortedGroupMembers}
theme={theme}