diff --git a/web/apps/web/src/stores/app/schema-provider.tsx b/web/apps/web/src/stores/app/schema-provider.tsx index 6c9c8e82..ba604c04 100644 --- a/web/apps/web/src/stores/app/schema-provider.tsx +++ b/web/apps/web/src/stores/app/schema-provider.tsx @@ -87,7 +87,7 @@ export const SchemaProvider: React.FC = ({ useEffect(() => { if (name && !widgetSchema[name] && type === NodeTypeEnum.widget) { - getWidgetSchema({ widget_name: name }); + getWidgetSchema({ widget_name: name, myshell_widget_name: '' }); } }, [name]); diff --git a/web/apps/web/src/stores/workflow/schema-provider.tsx b/web/apps/web/src/stores/workflow/schema-provider.tsx index 930b76cb..f71afe59 100644 --- a/web/apps/web/src/stores/workflow/schema-provider.tsx +++ b/web/apps/web/src/stores/workflow/schema-provider.tsx @@ -102,7 +102,7 @@ export const SchemaProvider: React.FC = ({ id !== NodeIdEnum.start && id !== NodeIdEnum.end ) { - getWidgetSchema({ widget_name: name }); + getWidgetSchema({ widget_name: name, myshell_widget_name: '' }); } }, [name]);