From f41742490712d8136008df0b1594ef37082310c6 Mon Sep 17 00:00:00 2001 From: William Grant Date: Thu, 16 May 2024 17:17:43 +1000 Subject: [PATCH] fix: replace setAccountPasswordTitle with lockApp string --- _locales/en/messages.json | 1 - ts/components/settings/section/CategoryPrivacy.tsx | 2 +- ts/types/LocalizerKeys.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 3f339e5b1..2d563d5ec 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -462,7 +462,6 @@ "sessionRecoveryPassword": "Recovery Password", "set": "Set", "setAccountPasswordDescription": "Require password to unlock Session.", - "setAccountPasswordTitle": "Password", "setDisplayPicture": "Set Display Picture", "setPassword": "Set Password", "setPasswordFail": "Failed to set password", diff --git a/ts/components/settings/section/CategoryPrivacy.tsx b/ts/components/settings/section/CategoryPrivacy.tsx index 29c434a73..1e54cdea4 100644 --- a/ts/components/settings/section/CategoryPrivacy.tsx +++ b/ts/components/settings/section/CategoryPrivacy.tsx @@ -109,7 +109,7 @@ export const SettingsCategoryPrivacy = (props: { {!props.hasPassword ? ( { displayPasswordModal('set', props.onPasswordUpdated); diff --git a/ts/types/LocalizerKeys.ts b/ts/types/LocalizerKeys.ts index 218b3e17b..6d428ce8e 100644 --- a/ts/types/LocalizerKeys.ts +++ b/ts/types/LocalizerKeys.ts @@ -462,7 +462,6 @@ export type LocalizerKeys = | 'sessionRecoveryPassword' | 'set' | 'setAccountPasswordDescription' - | 'setAccountPasswordTitle' | 'setDisplayPicture' | 'setPassword' | 'setPasswordFail'