fix build error

This commit is contained in:
yoan 2024-12-22 18:43:18 +08:00
parent 88cbf30fde
commit ba73e04046
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ import { Input } from "../ui/input";
import { useWorkflowStore, WorkflowState } from "@/stores/workflow";
import { WorkflowNode, WorkflowNodeConfig } from "@/domain/workflow";
import { usePanel } from "./PanelProvider";
import { RadioChangeEvent } from "antd/lib";
const formSchema = z
.object({
@ -98,7 +99,7 @@ const StartForm = ({ data }: StartFormProps) => {
<Radio.Group
{...field}
value={method}
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
onChange={(e: RadioChangeEvent) => {
setMethod(e.target.value);
}}
className="flex space-x-3"

View File

@ -1 +1 @@
export const version = "v0.3.0-alpha.7";
export const version = "v0.3.0-alpha.8";