| 50 | export type GeminiFormValues = z.infer<typeof formSchema>; |
| 51 | |
| 52 | interface Props { |
| 53 | open: boolean; |
| 54 | onOpenChange: (open: boolean) => void; |
| 55 | onSubmit: (values: z.infer<typeof formSchema>) => void; |
| 56 | defaultValues?: Partial<GeminiFormValues>; |
| 57 | }; |
| 58 | |
| 59 | export const GeminiDialog = ({ |
| 60 | open, |
nothing calls this directly
no outgoing calls
no test coverage detected