fix: Pdf branding templates request data

This commit is contained in:
Ahmed Bouhuolia
2024-10-07 16:03:56 +02:00
parent bbdfe00c7a
commit 9edfb83221
20 changed files with 142 additions and 72 deletions

View File

@@ -2,7 +2,7 @@
import React from 'react';
import { Formik, Form, FormikHelpers } from 'formik';
export interface ElementCustomizeFormProps<T> {
export interface ElementCustomizeFormProps<T, Y> {
initialValues?: T;
validationSchema?: any;
onSubmit?: (values: T, formikHelpers: FormikHelpers<T>) => void;