Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
estevamfurtado committed Nov 11, 2024
1 parent 2f6dc56 commit 266328a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions components/ranking/Share/ShareCallout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const WhatsAppButton = () => {

const LinkedInButton = () => {
return (
<button
<button
className={styles.shareBtn}
onClick={() => {
window.open(
Expand All @@ -58,9 +58,7 @@ const CopyButton = () => {
const [copied, setCopied] = useState(false);

const handleCopy = () => {
window.navigator.clipboard.writeText(
"https://www.reditus.org.br/ranking"
);
window.navigator.clipboard.writeText("https://www.reditus.org.br/ranking");
setCopied(true);
setTimeout(() => {
setCopied(false);
Expand Down

0 comments on commit 266328a

Please sign in to comment.