We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a79ee4c commit 9239415Copy full SHA for 9239415
src/components/CoderpadWrapper.js
@@ -50,12 +50,10 @@ class CoderpadWrapper extends Component {
50
* Attempts to fetch code from pastebin and load into coderpad.
51
*/
52
getInitialState = () => {
53
- console.log(this.props);
54
if (this.props.match.path === "/:id") {
55
const paste_id = this.props.match.params.id;
56
const get_url = LOAD_CODE_GET_URL.replace('%s', paste_id);
57
58
- console.log(get_url);
59
axios.get(get_url)
60
.then(response => {
61
const status = response.data.status
@@ -234,7 +232,7 @@ class CoderpadWrapper extends Component {
234
232
* Saves the code snippet and copies link to clipboard.
235
233
236
saveCode = () => {
237
- console.log("Here!");
+ return;
238
}
239
240
render() {
0 commit comments