diff --git a/frontend/src/components/ShuffleCodeEditor.jsx b/frontend/src/components/ShuffleCodeEditor.jsx
index 4faa1790..890501a0 100644
--- a/frontend/src/components/ShuffleCodeEditor.jsx
+++ b/frontend/src/components/ShuffleCodeEditor.jsx
@@ -8,7 +8,6 @@ import 'codemirror/theme/gruvbox-dark.css';
const Textfield = (props) => {
const {fieldCount, setFieldCount} = props
- // const {editorData} = props
const {changeActionParameterCodeMirror} = props
const {expansionModalOpen, setExpansionModalOpen} = props
const {codedata, setcodedata} = props
@@ -94,7 +93,6 @@ const Textfield = (props) => {
value = {localcodedata}
height="200px"
onChange={(value) => {
- // setcodedata(value.getValue())
setlocalcodedata(value.getValue())
}}
options={{
@@ -107,7 +105,6 @@ const Textfield = (props) => {
diff --git a/frontend/src/views/AngularWorkflow.jsx b/frontend/src/views/AngularWorkflow.jsx
index a6c81a96..8c4558db 100644
--- a/frontend/src/views/AngularWorkflow.jsx
+++ b/frontend/src/views/AngularWorkflow.jsx
@@ -1,7 +1,6 @@
import React, {useRef, useState, useEffect, useLayoutEffect} from 'react';
import { useInterval } from 'react-powerhooks';
import { useTheme } from '@material-ui/core/styles';
-import ShuffleCodeEditor from "../components/ShuffleCodeEditor.jsx";
import { v4 as uuidv4 } from 'uuid';
import {Link} from 'react-router-dom';
@@ -170,9 +169,6 @@ const AngularWorkflow = (props) => {
selected: "",
})
- const [codedata, setcodedata] = React.useState("print('Hello')");
- const [expansionModalOpen, setExpansionModalOpen] = React.useState(false);
-
const [history, setHistory] = React.useState([])
const [historyIndex, setHistoryIndex] = React.useState(history.length)
@@ -7832,12 +7828,6 @@ const AngularWorkflow = (props) => {
globalUrl={globalUrl}
setSelectedActionEnvironment={setSelectedActionEnvironment}
requiresAuthentication={requiresAuthentication}
-
- // onClick={() => {
- // // console.log("Clicked field: ", clickedFieldId)
- // setExpansionModalOpen(true)
- // }
- // }
/>
)
@@ -9449,20 +9439,6 @@ const AngularWorkflow = (props) => {
)
-
- // const baselabel = selectedAction.label
- // return (
- //
- // {}
- //
- // )
}
export default AngularWorkflow