Skip to content

Commit a83924a

Browse files
authored
Merge pull request #6672 from Rajesh-Nagarajan-11/fix-social-media-share-links-6396
Fix social media share links
2 parents 43cbc11 + 5e5d6ef commit a83924a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sections/Blog/Blog-single/author.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ const AboutTheAuthor = (props) => {
3535
<div className="share-section">
3636
<h3>Share</h3>
3737
<div className="share-icons-container">
38-
<TwitterShareButton $url={location.href} title={shareQuote} className="icon">
38+
<TwitterShareButton url={location.href} title={shareQuote} className="icon">
3939
<AiOutlineTwitter />
4040
</TwitterShareButton>
41-
<FacebookShareButton $url={location.href} quote={shareQuote} className="icon">
41+
<FacebookShareButton url={location.href} quote={shareQuote} className="icon">
4242
<FaFacebookF />
4343
</FacebookShareButton>
44-
<LinkedinShareButton $url={location.href} className="icon">
44+
<LinkedinShareButton url={location.href} title={shareQuote} className="icon">
4545
<FaLinkedin />
4646
</LinkedinShareButton>
4747
</div>

0 commit comments

Comments
 (0)