diff --git a/frontend/src/components/agency/actions/Actions.jsx b/frontend/src/components/agency/actions/Actions.jsx index faa973bf0..ba57e40fb 100644 --- a/frontend/src/components/agency/actions/Actions.jsx +++ b/frontend/src/components/agency/actions/Actions.jsx @@ -77,10 +77,10 @@ function Actions({ statusBarMsg, initializeWfComp, stepLoader }) { // Enable Deploy as ETL Pipeline only when // destination connection_type is DATABASE and Source & Destination are Configured setCanAddETLPipeline( - (destination?.connection_type === "DATABASE" || - destination.connection_type === "MANUALREVIEW") && - source?.connector_instance && - destination.connector_instance + source?.connector_instance && + ((destination?.connection_type === "DATABASE" && + destination.connector_instance) || + destination.connection_type === "MANUALREVIEW") ); }, [source, destination]); useEffect(() => { diff --git a/frontend/src/components/custom-tools/output-for-doc-modal/OutputForDocModal.jsx b/frontend/src/components/custom-tools/output-for-doc-modal/OutputForDocModal.jsx index 23de585e2..69f517f75 100644 --- a/frontend/src/components/custom-tools/output-for-doc-modal/OutputForDocModal.jsx +++ b/frontend/src/components/custom-tools/output-for-doc-modal/OutputForDocModal.jsx @@ -78,7 +78,7 @@ function OutputForDocModal({ const axiosPrivate = useAxiosPrivate(); const navigate = useNavigate(); const { setAlertDetails } = useAlertStore(); - const { handleException } = useExceptionHandler(); + const handleException = useExceptionHandler(); const { tokenUsage } = useTokenUsageStore(); const [selectedProfile, setSelectedProfile] = useState(defaultLlmProfile); diff --git a/frontend/src/components/custom-tools/tool-ide/ToolIde.css b/frontend/src/components/custom-tools/tool-ide/ToolIde.css index bf0b907b1..e568d504b 100644 --- a/frontend/src/components/custom-tools/tool-ide/ToolIde.css +++ b/frontend/src/components/custom-tools/tool-ide/ToolIde.css @@ -37,7 +37,7 @@ .tool-ide-prompts { padding: 12px 6px 1px 12px; - height: 100% !important; + height: 100%; } .tool-ide-pdf {