fix(frontend): apply feedback updates

This commit is contained in:
yassinedorbozgithub
2025-02-04 06:10:11 +01:00
parent 5c5db5b6af
commit 0b19f45b59
4 changed files with 27 additions and 22 deletions

View File

@@ -154,7 +154,7 @@ export type ComponentFormProps<T> = {
export interface FormButtonsProps<T> {
onCancel?: () => void;
onConfirm: (e: BaseSyntheticEvent) => Promise<T>;
onSubmit: (e: BaseSyntheticEvent) => Promise<T>;
}
export type ComponentFormDialogProps<T> = DialogProps<T | null, boolean>;