Skip to content

Commit acdaff5

Browse files
committed
fix share post button in blog section
Signed-off-by: codingdud <[email protected]>
1 parent 51dadef commit acdaff5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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)