♻️ (frontend): remove console.log statements from various components

This commit is contained in:
cristhianzl 2024-06-27 15:38:29 -03:00 committed by Gabriel Luiz Freitas Almeida
commit c8377e9909
4 changed files with 0 additions and 10 deletions

View file

@ -36,8 +36,6 @@ export default function HandleRenderComponent({
showNode: any;
testIdComplement?: string;
}) {
console.log(myData);
return (
<Button
unstyled

View file

@ -248,8 +248,6 @@ export default function ParameterComponent({
}
}, [disabledOutput]);
console.log(data);
return !showNode ? (
left && LANGFLOW_SUPPORTED_TYPES.has(type ?? "") && !optionalHandle ? (
<></>

View file

@ -43,10 +43,6 @@ export const FolderForms = ({
if (folderToEdit) {
setValue("name", folderToEdit.name);
setValue("description", folderToEdit.description);
console.log(folderToEdit);
// setSelectedComponents(folderToEdit.components);
// setSelectedFlows(folderToEdit.flows);
return;
}
setValue("name", "");

View file

@ -63,8 +63,6 @@ export default function ChatView({
)
.map((output, index) => {
try {
console.log("output:", output);
const messageOutput = output.data.message;
const hasMessageValue =
messageOutput?.message ||