Skip to content

Commit

Permalink
chore: Remove redundant logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sashko9807 committed Dec 6, 2024
1 parent 2310683 commit e926ba1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/common/SocialShareListButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export default function SocialShareListButton({
const [anchorEl, setAnchorEl] = React.useState<HTMLButtonElement | null>(null)

const handleClick = (event: React.MouseEvent<HTMLButtonElement>) => {
console.log(event.currentTarget)
setAnchorEl(event.currentTarget)
}

Expand Down Expand Up @@ -57,7 +56,6 @@ export default function SocialShareListButton({
<ListItemButton
onClick={() => {
navigator.clipboard.writeText(url)
console.log(url)
AlertStore.show('Campaign link copied to clipboard', 'success')
setAnchorEl(null)
}}>
Expand Down

0 comments on commit e926ba1

Please sign in to comment.