diff --git a/src/containers/Organization/Video/components/SettingsButtonComponent.jsx b/src/containers/Organization/Video/components/SettingsButtonComponent.jsx index 6e9b334c..586d5e9d 100644 --- a/src/containers/Organization/Video/components/SettingsButtonComponent.jsx +++ b/src/containers/Organization/Video/components/SettingsButtonComponent.jsx @@ -106,14 +106,7 @@ const SettingsButtonComponent = ({ }, [apiStatus]); const getDisbled = (flag) => { - - - if ( - taskData?.source_type === "Manually Created" -) { - return false; - } - + if (!transcriptPayload?.payload?.payload?.length) { return true; } @@ -123,13 +116,11 @@ const SettingsButtonComponent = ({ transcriptPayload?.source_type !== "MACHINE_GENERATED" ) { if (durationError?.some((item) => item === true)) { - console.log("2"); return true; } if (flag && completedCount !== totalSentences) { - console.log("3"); return true; } @@ -140,7 +131,6 @@ const SettingsButtonComponent = ({ transcriptPayload?.source_type === "MACHINE_GENERATED" ) { if (!transcriptPayload?.payload?.payload.length) { - console.log("4"); return true; }