Skip to content

Commit

Permalink
qa: requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-rajpal committed Apr 15, 2024
1 parent 71d175b commit 5ff2123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/meteor/client/views/e2e/SaveE2EPasswordModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const SaveE2EPasswordModal = ({ randomPassword, onClose, onCancel, onConfirm }:
annotation={t('You_can_do_from_account_preferences')}
>
<p>
<span>{t('E2E_password_reveal_text')}</span>
<span dangerouslySetInnerHTML={{ __html: t('E2E_password_reveal_text', { randomPassword }) }} />
<ExternalLink to={DOCS_URL} mis={4}>
{t('Learn_more_about_E2EE')}
</ExternalLink>
Expand All @@ -41,7 +41,7 @@ const SaveE2EPasswordModal = ({ randomPassword, onClose, onCancel, onConfirm }:
{t('E2E_password_save_text')}
</Box>
<p>{t('Your_E2EE_password_is')}</p>
<CodeSnippet buttonText={hasCopied ? t('Copied') : t('Copy_password')} buttonDisabled={hasCopied} onClick={() => copy()}>
<CodeSnippet buttonText={hasCopied ? t('Copied') : t('Copy')} buttonDisabled={hasCopied} onClick={() => copy()} mbs={8}>
{randomPassword}
</CodeSnippet>
</GenericModal>
Expand Down

0 comments on commit 5ff2123

Please sign in to comment.