♻️ (frontend): remove console.log statements from various components
This commit is contained in:
parent
5d58e796d4
commit
c8377e9909
4 changed files with 0 additions and 10 deletions
|
|
@ -36,8 +36,6 @@ export default function HandleRenderComponent({
|
|||
showNode: any;
|
||||
testIdComplement?: string;
|
||||
}) {
|
||||
console.log(myData);
|
||||
|
||||
return (
|
||||
<Button
|
||||
unstyled
|
||||
|
|
|
|||
|
|
@ -248,8 +248,6 @@ export default function ParameterComponent({
|
|||
}
|
||||
}, [disabledOutput]);
|
||||
|
||||
console.log(data);
|
||||
|
||||
return !showNode ? (
|
||||
left && LANGFLOW_SUPPORTED_TYPES.has(type ?? "") && !optionalHandle ? (
|
||||
<></>
|
||||
|
|
|
|||
|
|
@ -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", "");
|
||||
|
|
|
|||
|
|
@ -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 ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue