From f09f91e25a05b161d068b5c62911510d481ec529 Mon Sep 17 00:00:00 2001 From: Joel Date: Thu, 22 Feb 2024 18:51:25 +0800 Subject: [PATCH] hide debug --- web/app/components/workflow/nodes/start/use-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/nodes/start/use-config.ts b/web/app/components/workflow/nodes/start/use-config.ts index 278ec2ee23..8578746e20 100644 --- a/web/app/components/workflow/nodes/start/use-config.ts +++ b/web/app/components/workflow/nodes/start/use-config.ts @@ -10,7 +10,7 @@ const useConfig = (initInputs: StartNodeType) => { const [isShowAddVarModal, { setTrue: showAddVarModal, setFalse: hideAddVarModal, - }] = useBoolean(true) + }] = useBoolean(false) const handleVarListChange = useCallback((newList: InputVar[]) => { const newInputs = produce(inputs, (draft: any) => {