diff --git a/src/frontend/src/modals/ApiModal/index.tsx b/src/frontend/src/modals/ApiModal/index.tsx index 579a53591..9e847aae5 100644 --- a/src/frontend/src/modals/ApiModal/index.tsx +++ b/src/frontend/src/modals/ApiModal/index.tsx @@ -50,14 +50,9 @@ const ApiModal = forwardRef( const tweaksList = useRef([]); const [getTweak, setTweak] = useState([]); const flowState = useFlowStore((state) => state.flowState); - const pythonApiCode = getPythonApiCode( - flow, - autoLogin, - tweak.current, - flowState - ); - const curl_code = getCurlCode(flow, autoLogin, tweak.current, flowState); - const pythonCode = getPythonCode(flow, tweak.current, flowState); + const pythonApiCode = getPythonApiCode(flow, autoLogin, tweak.current); + const curl_code = getCurlCode(flow, autoLogin, tweak.current); + const pythonCode = getPythonCode(flow, tweak.current); const widgetCode = getWidgetCode(flow, autoLogin, flowState); const tweaksCode = buildTweaks(flow); const codesArray = [ @@ -168,14 +163,9 @@ const ApiModal = forwardRef( tweak.current.push(newTweak); } - const pythonApiCode = getPythonApiCode( - flow, - autoLogin, - tweak.current, - flowState - ); - const curl_code = getCurlCode(flow, autoLogin, tweak.current, flowState); - const pythonCode = getPythonCode(flow, tweak.current, flowState); + const pythonApiCode = getPythonApiCode(flow, autoLogin, tweak.current); + const curl_code = getCurlCode(flow, autoLogin, tweak.current); + const pythonCode = getPythonCode(flow, tweak.current); const widgetCode = getWidgetCode(flow, autoLogin, flowState); tabs![0].code = curl_code;