Skip to content

Commit bc23c22

Browse files
authored
Merge pull request #6684 from codingdud/share-post-fix
fix share post button in blog section
2 parents a195e2a + c8d765f commit bc23c22

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ const BlogSingle = ({ data }) => {
130130
<div className="post-share-mobile">
131131
<div className="share-icons-container">
132132
<h4>Share Post:</h4>
133-
<TwitterShareButton $url={location.href} title={shareQuote}>
133+
<TwitterShareButton url={location.href} title={shareQuote}>
134134
<AiOutlineTwitter />
135135
</TwitterShareButton>
136-
<FacebookShareButton $url={location.href} quote={shareQuote}>
136+
<FacebookShareButton url={location.href} quote={shareQuote}>
137137
<FaFacebookF />
138138
</FacebookShareButton>
139-
<LinkedinShareButton $url={location.href}>
139+
<LinkedinShareButton url={location.href} title={shareQuote}>
140140
<FaLinkedin />
141141
</LinkedinShareButton>
142142
<CopyToClipboard text={location.href} title="Copy link" onCopy={() => setCopied(true)}>

0 commit comments

Comments
 (0)