(name: string)
| 97 | * Change case to a presentable format. |
| 98 | */ |
| 99 | export const changeCase = (name: string) => |
| 100 | startCase(camelCase(name.toLowerCase())); |
| 101 | |
| 102 | export const processSubmission = <Schema extends ZodTypeAny>( |
| 103 | formData: FormData, |
no outgoing calls
no test coverage detected