(values: z.infer<typeof formSchema>)
| 72 | }); |
| 73 | |
| 74 | const onSubmit = (values: z.infer<typeof formSchema>) => { |
| 75 | execute({ |
| 76 | id: data.id, |
| 77 | company_id: values.company_id, |
| 78 | name: values.name, |
| 79 | description: values.description, |
| 80 | link: values.link, |
| 81 | logo: values.logo, |
| 82 | config: null, |
| 83 | }); |
| 84 | }; |
| 85 | |
| 86 | const setLogo = (logo: string) => { |
| 87 | form.setValue("logo", logo); |
nothing calls this directly
no outgoing calls
no test coverage detected