Clarify behavior for SMS-only conversations
This commit is contained in:
parent
85c74e7e68
commit
9b84402fb0
8 changed files with 42 additions and 57 deletions
|
@ -118,7 +118,7 @@ export type OwnProps = Readonly<{
|
|||
recordingState: RecordingState;
|
||||
messageCompositionId: string;
|
||||
shouldHidePopovers: boolean | null;
|
||||
isSMSOnly: boolean | null;
|
||||
isSmsOnlyOrUnregistered: boolean | null;
|
||||
left: boolean | null;
|
||||
linkPreviewLoading: boolean;
|
||||
linkPreviewResult: LinkPreviewType | null;
|
||||
|
@ -331,7 +331,7 @@ export const CompositionArea = memo(function CompositionArea({
|
|||
cancelJoinRequest,
|
||||
showConversation,
|
||||
// SMS-only contacts
|
||||
isSMSOnly,
|
||||
isSmsOnlyOrUnregistered,
|
||||
isFetchingUUID,
|
||||
renderSmartCompositionRecording,
|
||||
renderSmartCompositionRecordingDraft,
|
||||
|
@ -800,7 +800,7 @@ export const CompositionArea = memo(function CompositionArea({
|
|||
);
|
||||
}
|
||||
|
||||
if (conversationType === 'direct' && isSMSOnly) {
|
||||
if (conversationType === 'direct' && isSmsOnlyOrUnregistered) {
|
||||
return (
|
||||
<div
|
||||
className={classNames([
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue