Skip to content

Commit

Permalink
MAT-6188 remove a console log
Browse files Browse the repository at this point in the history
  • Loading branch information
ethankaplan committed Aug 13, 2024
1 parent 4514039 commit 11c9f84
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions react/components/MadieAlert/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ const MadieAlert = ({

useEffect(() => {
if(content && copyButton){
copyText=copyButtonBuilder(content);
console.log(copyText)}
copyText=copyButtonBuilder(content);}
}, [content]);
// we have four states to render for
const typeSelect = {
Expand Down Expand Up @@ -94,7 +93,6 @@ const MadieAlert = ({
<ContentCopyIcon onClick={(e)=>{
e.preventDefault()
navigator.clipboard.writeText(copyText);

}} sx={{ color: "#242424" }} />
</IconButton>
)}
Expand Down

0 comments on commit 11c9f84

Please sign in to comment.