File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
packages/frontend/src/components
FlowStepGroup/Content/IfThen Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,6 @@ export default function Editor(props: EditorProps): React.ReactElement {
5252 onCreateStep,
5353 onDrawerClose,
5454 onDrawerOpen,
55- onUpdateStep,
5655 setCurrentStepId,
5756 } = useContext ( EditorContext )
5857
@@ -250,7 +249,6 @@ export default function Editor(props: EditorProps): React.ReactElement {
250249 setCurrentStepIndex ( null )
251250 onDrawerClose ( )
252251 } }
253- onChange = { onUpdateStep }
254252 />
255253 < AddStepButton
256254 // hide all add button steps if is readonly
Original file line number Diff line number Diff line change @@ -25,8 +25,6 @@ type FlowStepProps = {
2525 isNested ?: boolean
2626 onOpen : ( ) => void
2727 onClose : ( ) => void
28- onChange : ( step : IStep ) => void
29- shouldHighlight ?: boolean
3028}
3129
3230export default function FlowStep (
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ export default function Branch(props: BranchProps) {
4848 readOnly : isEditorReadOnly ,
4949 onDrawerClose,
5050 onDrawerOpen,
51- onUpdateStep,
5251 setCurrentStepId,
5352 setCurrentStepIndex,
5453 } = useContext ( EditorContext )
@@ -152,7 +151,6 @@ export default function Branch(props: BranchProps) {
152151 setCurrentStepIndex ( null )
153152 onDrawerClose ( )
154153 } }
155- onChange = { onUpdateStep }
156154 />
157155 < HoverAddStepButton
158156 isDisabled = { isEditorReadOnly }
You can’t perform that action at this time.
0 commit comments