From cd74a4d478c02e6e2ac9469e279a5071258d73aa Mon Sep 17 00:00:00 2001 From: StevenDufresne Date: Fri, 30 Aug 2024 11:15:35 +0900 Subject: [PATCH] Reduce the content. --- settings/src/components/account-status.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/src/components/account-status.js b/settings/src/components/account-status.js index ed2d3a19..4c7678e0 100644 --- a/settings/src/components/account-status.js +++ b/settings/src/components/account-status.js @@ -34,7 +34,7 @@ export default function AccountStatus() { ? 'Please enable a Two-Factor security key or app before enabling backup codes.' : `You have ${ backupCodesEnabled ? '' : 'not' } - verified your backup codes for two-factor authentication.`; + verified your backup codes.`; return (
@@ -63,7 +63,7 @@ export default function AccountStatus() { bodyText={ webAuthnEnabled ? 'You have two-factor authentication enabled using security keys.' - : 'You have not enabled security keys for two-factor authentication.' + : 'You have not enabled security keys.' } isPrimary={ 'TwoFactor_Provider_WebAuthn' === primaryProvider && totpEnabled } /> @@ -75,7 +75,7 @@ export default function AccountStatus() { bodyText={ totpEnabled ? 'You have two-factor authentication enabled using an app.' - : 'You have not enabled an app for two-factor authentication.' + : 'You have not enabled an app.' } isPrimary={ 'Two_Factor_Totp' === primaryProvider && webAuthnEnabled } />