Skip to content

Commit

Permalink
Remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Sep 20, 2024
1 parent 34b35f9 commit 9287d6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Doc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export default class Doc extends React.Component<DocProps> {
}
{docUrl && docUrlDescription &&
<div className="SpecDoc__learn-more">
<a href={docUrl} target="_blank" rel="noreferrer" onClick={() => console.log('Link clicked')}>{docUrlDescription}</a>
<a href={docUrl} target="_blank" rel="noreferrer">{docUrlDescription}</a>
</div>
}
</>
Expand Down

0 comments on commit 9287d6f

Please sign in to comment.