add jsonv-ts as dependency for type inference, fix media api types (#227)

* add jsonv-ts as dependency for type inference, fix media api types

* add jsonv-ts as dependency for type inference, fix media api types

* add jsonv-ts as dependency for type inference, fix media api types
This commit is contained in:
dswbx
2025-08-06 08:21:17 +02:00
committed by GitHub
parent aa0e6f90d9
commit ad0d2e6ff8
5 changed files with 13 additions and 13 deletions

View File

@@ -94,8 +94,8 @@ export const TriggerNode = (props: NodeProps<Node<TAppFlowTriggerSchema & { labe
control={control}
/>
</div>
{data.type === "manual" && <Manual />}
{data.type === "http" && (
{data?.type === "manual" && <Manual />}
{data?.type === "http" && (
<Http form={{ watch, register, setValue, getValues, control }} />
)}
</form>