This commit is contained in:
Pierre Jacquier
2025-03-28 07:34:41 -04:00
parent 7364877539
commit 05add6b038

View File

@ -1808,7 +1808,7 @@ export const modelingMachine = setup({
// Removing the old extrusion statement
const newBody = [...ast.body]
newBody.splice(nodeToEdit[1][0] as number, 1)
newBody.splice(nodeToEdit[1][0], 1)
ast.body = newBody
}