(values: z.infer<typeof autoFormSchema>)
| 144 | ); |
| 145 | |
| 146 | const onParse = (values: z.infer<typeof autoFormSchema>) => { |
| 147 | setParseError(null); |
| 148 | setPublishError(null); |
| 149 | setParsed(null); |
| 150 | executeParse({ url: values.url }); |
| 151 | }; |
| 152 | |
| 153 | const onPublishAuto = () => { |
| 154 | if (!parsed) return; |
nothing calls this directly
no outgoing calls
no test coverage detected