mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-25 04:36:46 +00:00
Onboarding story
This commit is contained in:
@@ -92,6 +92,7 @@ export type OwnProps = Readonly<{
|
||||
) => unknown;
|
||||
compositionApi?: MutableRefObject<CompositionAPIType>;
|
||||
conversationId: string;
|
||||
uuid?: string;
|
||||
draftAttachments: ReadonlyArray<AttachmentDraftType>;
|
||||
errorDialogAudioRecorderType?: ErrorDialogAudioRecorderType;
|
||||
errorRecording: (e: ErrorDialogAudioRecorderType) => unknown;
|
||||
@@ -101,6 +102,7 @@ export type OwnProps = Readonly<{
|
||||
isFetchingUUID?: boolean;
|
||||
isGroupV1AndDisabled?: boolean;
|
||||
isMissingMandatoryProfileSharing?: boolean;
|
||||
isSignalConversation?: boolean;
|
||||
recordingState: RecordingState;
|
||||
isSMSOnly?: boolean;
|
||||
left?: boolean;
|
||||
@@ -176,6 +178,7 @@ export const CompositionArea = ({
|
||||
processAttachments,
|
||||
removeAttachment,
|
||||
theme,
|
||||
isSignalConversation,
|
||||
|
||||
// AttachmentList
|
||||
draftAttachments,
|
||||
@@ -481,6 +484,11 @@ export const CompositionArea = ({
|
||||
};
|
||||
}, [setLarge]);
|
||||
|
||||
if (isSignalConversation) {
|
||||
// TODO DESKTOP-4547
|
||||
return <div />;
|
||||
}
|
||||
|
||||
if (
|
||||
isBlocked ||
|
||||
areWePending ||
|
||||
|
||||
Reference in New Issue
Block a user