Links: Import as New/Over #356

This commit is contained in:
Enrico Ros
2024-01-22 14:42:47 -08:00
parent 911c46ebe2
commit a4d89c9e2c
+4 -2
View File
@@ -164,7 +164,9 @@ export function ViewChatLink(props: { conversation: DConversation, storedAt: Dat
boxShadow: 'md',
}}
>
Clone on {Brand.Title.Base}
{hasExistingChat
? `Import as New on ${Brand.Title.Base}`
: `Import on ${Brand.Title.Base}`}
</Button>
{hasExistingChat && (
@@ -175,7 +177,7 @@ export function ViewChatLink(props: { conversation: DConversation, storedAt: Dat
endDecorator={<TelegramIcon />}
onClick={() => handleClone(true)}
>
Replace Existing
Import Over
</Button>
</Tooltip>
)}