Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
brendan-defi committed Jan 22, 2025
1 parent 7d840d5 commit 0fab92e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/internal/components/CopyButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ export function CopyButton({
type="button"
data-testid="ockCopyButton"
className={className}
onClick={() => {
console.log('clicked copyButton');
copyToClipboard({ copyValue, onSuccess, onError });
}}
onClick={() => copyToClipboard({ copyValue, onSuccess, onError })}
aria-label={ariaLabel}
>
{label}
Expand Down

0 comments on commit 0fab92e

Please sign in to comment.