Skip to content

Commit bf8b891

Browse files
LakshSinglacatarak
authored andcommitted
Share modal can now display different projects
1 parent dd7dfec commit bf8b891

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

client/modules/App/components/Overlay.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class Overlay extends React.Component {
3737
}
3838

3939
handleClickOutside() {
40-
console.log(this.node);
4140
this.close();
4241
}
4342

client/modules/IDE/actions/project.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,6 @@ export function cloneProject(id) {
253253
if (!id) {
254254
resolve(getState());
255255
} else {
256-
console.log(id);
257256
fetch(`${ROOT_URL}/projects/${id}`)
258257
.then(res => res.json())
259258
.then(data => resolve({
@@ -264,8 +263,6 @@ export function cloneProject(id) {
264263
}));
265264
}
266265
}).then((state) => {
267-
console.log('Huuray');
268-
console.log(state);
269266
const newFiles = state.files.map((file) => { // eslint-disable-line
270267
return { ...file };
271268
});

0 commit comments

Comments
 (0)