remove debug log (#3853)
This commit is contained in:
@ -466,10 +466,7 @@ export const modelingMachine = setup({
|
||||
'next is rectangle': ({ context: { sketchDetails, currentTool } }) =>
|
||||
currentTool === 'rectangle' && canRectangleTool({ sketchDetails }),
|
||||
'next is line': ({ context }) => context.currentTool === 'line',
|
||||
'next is none': ({ context }) => {
|
||||
console.log('is next none?', context)
|
||||
return context.currentTool === 'none'
|
||||
},
|
||||
'next is none': ({ context }) => context.currentTool === 'none',
|
||||
},
|
||||
// end guards
|
||||
actions: {
|
||||
|
Reference in New Issue
Block a user