fix email hint

This commit is contained in:
Anton Tranelis 2024-11-08 09:01:46 +01:00
parent fbfa0d5d7f
commit 7ddd125289
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ const SocialShareBar = ({
backgroundColor: '#444',
}}
onClick={() => copyLink()}
title='copy Link'
title='share link via email'
>
<svg
xmlns='http://www.w3.org/2000/svg'

View File

@ -93,7 +93,7 @@ const SocialShareButton = ({ platform, url, title }) => {
color: 'white',
backgroundColor: bgColor,
}}
title={`share link ${platform === 'email' ? 'via email' : 'on ' + platform}`}
title={`share link on ${platform}`}
>
{React.cloneElement(icon, { className: 'tw-w-4 tw-h-4 tw-fill-current' })}
</a>