diff --git a/client/me/security-ssh-key/manage-ssh-keys.tsx b/client/me/security-ssh-key/manage-ssh-keys.tsx index 27d33f2c1b5485..8b194d2957eb10 100644 --- a/client/me/security-ssh-key/manage-ssh-keys.tsx +++ b/client/me/security-ssh-key/manage-ssh-keys.tsx @@ -34,11 +34,16 @@ const SSHKeyAddedDate = styled.span( { const SSHKey = ( { sshKey, onDelete, keyBeingDeleted }: SSHKeyProps ) => { const { __ } = useI18n(); const handleDeleteClick = () => { - accept( __( 'Are you sure you want to remove this SSH key?' ), ( accepted: boolean ) => { - if ( accepted ) { - onDelete( sshKey.name ); + accept( + __( + 'Are you sure you want to remove this SSH key? It will be removed from all attached sites.' + ), + ( accepted: boolean ) => { + if ( accepted ) { + onDelete( sshKey.name ); + } } - } ); + ); }; return ( diff --git a/client/me/security-ssh-key/security-ssh-key.tsx b/client/me/security-ssh-key/security-ssh-key.tsx index 4828cae6d444d0..c75682aaadfa47 100644 --- a/client/me/security-ssh-key/security-ssh-key.tsx +++ b/client/me/security-ssh-key/security-ssh-key.tsx @@ -118,10 +118,15 @@ export const SecuritySSHKey = () => { 'Add a SSH key to your WordPress.com account to make it available for SFTP and SSH authentication.' ) }
++ { __( + 'Once added, attach the SSH key to a site with a Business or eCommerce plan to enable SSH key authentication for that site.' + ) } +
{ createInterpolateElement(
__(
- 'Once added, attach the SSH key to a site with a Business or eCommerce plan to enable SSH key authentication for that site. Read more.'
+ 'If the SSH key is removed from your WordPress.com account, it will also be removed from all attached sites. Read more.'
),
{
br:
,