refactor(types): remove any usages and strengthen typings across web and base (#26677)

This commit is contained in:
GuanMu
2025-10-09 21:36:42 +08:00
committed by GitHub
parent 45ae511036
commit 33b0814323
6 changed files with 45 additions and 28 deletions

View File

@@ -127,7 +127,7 @@ const VarReferencePicker: FC<Props> = ({
const reactflow = useReactFlow()
const startNode = availableNodes.find((node: any) => {
const startNode = availableNodes.find((node: Node) => {
return node.data.type === BlockEnum.Start
})