Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
tasti committed Feb 7, 2018
1 parent cb19e8b commit d0afedd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Linkify.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Linkify extends React.Component<Props, {}> {
return string;
}

const matches = this.props.matchDecorator(string);console.log(string, matches);
const matches = this.props.matchDecorator(string);
if (!matches) {
return string;
}
Expand Down Expand Up @@ -69,7 +69,7 @@ class Linkify extends React.Component<Props, {}> {
return children;
}

render() {
render(): React.Node {
return (
<React.Fragment>
{this.parse(this.props.children)}
Expand Down

0 comments on commit d0afedd

Please sign in to comment.