fix: enable link preview first use matches other platforms

pull/3206/head
Audric Ackermann 7 months ago
parent b6d5dd20fa
commit 93f2171155
No known key found for this signature in database

@ -693,8 +693,8 @@ export async function showLinkSharingConfirmationModalDialog(e: any) {
if (!alreadyDisplayedPopup) {
window.inboxStore?.dispatch(
updateConfirmModal({
title: window.i18n('linkPreviewsSend'),
i18nMessage: { token: 'linkPreviewsSendModalDescription' },
title: window.i18n('linkPreviewsEnable'),
i18nMessage: { token: 'linkPreviewsFirstDescription' },
okTheme: SessionButtonColor.Danger,
onClickOk: async () => {
await window.setSettingValue(SettingsKey.settingsLinkPreview, true);
@ -702,6 +702,7 @@ export async function showLinkSharingConfirmationModalDialog(e: any) {
onClickClose: async () => {
await Storage.put(SettingsKey.hasLinkPreviewPopupBeenDisplayed, true);
},
okText: window.i18n('enable'),
})
);
}

Loading…
Cancel
Save