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 } />