diff --git a/lms/static/js/student_account/components/StudentAccountDeletion.jsx b/lms/static/js/student_account/components/StudentAccountDeletion.jsx index 1341faa9ee..e108f09240 100644 --- a/lms/static/js/student_account/components/StudentAccountDeletion.jsx +++ b/lms/static/js/student_account/components/StudentAccountDeletion.jsx @@ -38,13 +38,7 @@ export class StudentAccountDeletion extends React.Component { render() { const { deletionModalOpen, socialAuthConnected, isActive } = this.state; - const loseAccessText = StringUtils.interpolate( - gettext('You may also lose access to verified certificates and other program credentials like MicroMasters certificates. If you want to make a copy of these for your records before proceeding with deletion, follow the instructions for {htmlStart}printing or downloading a certificate{htmlEnd}.'), - { - htmlStart: '', - htmlEnd: '', - }, - ); + const loseAccessText = gettext('You may also lose access to verified certificates and other program credentials. You can make a copy of these for your records before proceeding with deletion.') const showError = socialAuthConnected || !isActive; @@ -113,11 +107,7 @@ export class StudentAccountDeletion extends React.Component { {bodyDeletion} {bodyDeletion2}

-

+

{loseAccessText}

', - htmlEnd: '', - }, - ); + const loseAccessText = gettext('You may also lose access to verified certificates and other program credentials. You can make a copy of these for your records before proceeding with deletion.') const noteDeletion = StringUtils.interpolate( gettext('You have selected “Delete my account.” Deletion of your account and personal data is permanent and cannot be undone. {platformName} will not be able to recover your account or the data that is deleted.'), @@ -168,7 +162,7 @@ class StudentAccountDeletionConfirmationModal extends React.Component { {bodyDeletion2}

{/* eslint-disable-next-line react/no-danger */} -

+

{loseAccessText}

)}