diff --git a/wax-prosemirror-services/src/TransformService/TransformTool.js b/wax-prosemirror-services/src/TransformService/TransformTool.js index 6c9525f308f7a0e22933c79e9626befa7ffa9f11..69f771ae4a1eb2c019e52d08b9401fe5115a605b 100644 --- a/wax-prosemirror-services/src/TransformService/TransformTool.js +++ b/wax-prosemirror-services/src/TransformService/TransformTool.js @@ -38,8 +38,6 @@ const upperLowerCase = (state, dispatch, casing) => { const substringFrom = Math.max(0, selection.from - position - 1); const substringTo = Math.max(0, selection.to - position - 1); const updatedText = node.textBetween(substringFrom, substringTo); - console.log(node.textBetween(substringFrom, substringTo)); - console.log(node.textContent.substring(substringFrom - 1, substringTo - 1)); // set the casing const textNode = casing === 'upperCase'