Link-and-sync

This commit is contained in:
Fedor Indutny
2024-10-18 10:15:03 -07:00
committed by GitHub
parent 455ff88918
commit 6565daa5c8
25 changed files with 388 additions and 59 deletions

View File

@@ -27,6 +27,7 @@ export type Props = {
i18n: LocalizerType;
isMe: boolean;
isSignalConversation?: boolean;
isRestoredFromBackup: boolean;
membersCount?: number;
phoneNumber?: string;
sharedGroupNames?: ReadonlyArray<string>;
@@ -144,6 +145,7 @@ export function ConversationHero({
hasStories,
id,
isMe,
isRestoredFromBackup,
isSignalConversation,
membersCount,
sharedGroupNames = [],
@@ -276,7 +278,7 @@ export function ConversationHero({
phoneNumber,
sharedGroupNames,
})}
{!isSignalConversation && (
{!isSignalConversation && !isRestoredFromBackup && (
<div className="module-conversation-hero__linkNotification">
{i18n('icu:messageHistoryUnsynced')}
</div>