Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vallezw committed Mar 29, 2021
1 parent 4960176 commit 7a089ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default class SocialMediaShareButtons extends Component {
<div className="btn_wrap">
<span className="socialSpan">Share</span>
<div className="shareWrap">
<a href={`https://www.facebook.com/sharer/sharer.php?u=${URL}`} target="_blank" className="iconButton"><i className="fab fa-facebook-f"></i></a>
<a href={`https://twitter.com/intent/tweet?url=${URL}&text=${TEXT}`} target="_blank" className="iconButton"><i className="fab fa-twitter"></i></a>
<a href={`https://www.facebook.com/sharer/sharer.php?u=${URL}`} rel="noopener noreferrer" target="_blank" className="iconButton"><i className="fab fa-facebook-f"></i></a>
<a href={`https://twitter.com/intent/tweet?url=${URL}&text=${TEXT}`} target="_blank" rel="noopener noreferrer" className="iconButton"><i className="fab fa-twitter"></i></a>
<a href={`whatsapp://send?text=${TEXT}%0a${URL}`} data-action="share/whatsapp/share" className="iconButton"><i className="fab fa-whatsapp"></i></a>
<button onClick={() => {navigator.clipboard.writeText(URL)}} className="iconButton" ><i className="fas fa-copy"></i></button>
<a download="UploadedImage" href={SERVER_URL} className="iconButton"><i className="fas fa-download"></i></a>
Expand Down
2 changes: 0 additions & 2 deletions frontend/src/Components/Pages/404Page.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7a089ac

Please sign in to comment.