diff --git a/packages/start/data/createRouteAction.tsx b/packages/start/data/createRouteAction.tsx index 91c1ca2d0..1bb7e6184 100644 --- a/packages/start/data/createRouteAction.tsx +++ b/packages/start/data/createRouteAction.tsx @@ -26,14 +26,14 @@ export type RouteAction = [ clear: () => void; retry: () => void; }, - ((vars: T) => Promise) & { + ((vars: T) => Promise) & { Form: T extends FormData ? ParentComponent : never; url: string; } ]; export type RouteMultiAction = [ Submission[] & { pending: Submission[] }, - ((vars: T) => Promise) & { + ((vars: T) => Promise) & { Form: T extends FormData ? ParentComponent : never; url: string; }