Skip to content

Commit 836b76e

Browse files
committed
Remove some console.logs
1 parent 5dfceab commit 836b76e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/codingworkshops/views/User.vue

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,14 @@ export default {
3030
name: '',
3131
language: 'Blocks',
3232
get code () {
33-
console.log('heyo', this.language)
3433
return {
3534
Blocks: JSON.stringify([
3635
{
3736
type: 'callMars',
3837
func: 'rect',
3938
params: [
40-
{ type: 'literal', value: 10 },
41-
{ type: 'literal', value: 10 },
39+
{ type: 'literal', value: 1 },
40+
{ type: 'literal', value: 1 },
4241
{ type: 'literal', value: 10 },
4342
{ type: 'literal', value: 10 },
4443
],
@@ -62,7 +61,6 @@ export default {
6261
},
6362
methods: {
6463
async createProject () {
65-
console.log(JSON.stringify(this.data))
6664
const { ok, errors, slug } = await this.$methods.createProject({
6765
project: this.data,
6866
})

0 commit comments

Comments
 (0)