From cbf19f5a630671810e16128cd41bd6a310b4a954 Mon Sep 17 00:00:00 2001 From: Steven Dufresne Date: Fri, 30 Aug 2024 11:27:20 +0900 Subject: [PATCH] Reduce the content. (#311) --- 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 8ee3f816..ae19e371 100644 --- a/settings/src/components/account-status.js +++ b/settings/src/components/account-status.js @@ -39,7 +39,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 (
@@ -68,7 +68,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 } /> @@ -80,7 +80,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 } />