Skip to content

Commit 9239415

Browse files
committed
Removed console logs.
1 parent a79ee4c commit 9239415

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/components/CoderpadWrapper.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,10 @@ class CoderpadWrapper extends Component {
5050
* Attempts to fetch code from pastebin and load into coderpad.
5151
*/
5252
getInitialState = () => {
53-
console.log(this.props);
5453
if (this.props.match.path === "/:id") {
5554
const paste_id = this.props.match.params.id;
5655
const get_url = LOAD_CODE_GET_URL.replace('%s', paste_id);
5756

58-
console.log(get_url);
5957
axios.get(get_url)
6058
.then(response => {
6159
const status = response.data.status
@@ -234,7 +232,7 @@ class CoderpadWrapper extends Component {
234232
* Saves the code snippet and copies link to clipboard.
235233
*/
236234
saveCode = () => {
237-
console.log("Here!");
235+
return;
238236
}
239237

240238
render() {

0 commit comments

Comments
 (0)