Skip to content

Commit

Permalink
🐛 fix: clean console.log (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
ONLY-yours authored May 6, 2024
1 parent 4328b89 commit 5eec3c6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/Markdown/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ const MemoHr = memo((props) => (
));
const MemoDetails = memo((props) => <Collapse style={{ marginBottom: '1em' }} {...props} />);
const MemoImage = memo((props) => <img {...props} />);
const MemoAlink = memo((props) => {
console.log(props);

return <Typography.Link {...props} />;
});
const MemoAlink = memo((props) => <Typography.Link {...props} />);

const Markdown = memo<MarkdownProps>(
({
Expand Down

0 comments on commit 5eec3c6

Please sign in to comment.