Revert "Reset form on submit and cancel"

This reverts commit e2a19cfd1005d0d967530931287c0a125595eef7.
This commit is contained in:
karanh37 2025-09-25 11:40:35 +05:30
parent e2a19cfd10
commit 2381de0722
2 changed files with 3 additions and 14 deletions

View File

@ -303,7 +303,7 @@ const AddDomainForm = ({
delete (data as CreateDomain & { domains?: unknown }).domains;
}
onSubmit(data);
onSubmit(data).then(() => form.resetFields());
};
return (

View File

@ -24,7 +24,6 @@ export interface FormDrawerConfig<T = any>
form: ReactNode;
onSubmit: (data: T) => Promise<void> | void;
onCancel?: () => void;
onReset?: () => void;
submitLabel?: string;
cancelLabel?: string;
loading?: boolean;
@ -85,7 +84,6 @@ export const useFormDrawer = <T = any,>(config: FormDrawerConfig<T>) => {
form,
onSubmit,
onCancel,
onReset,
submitLabel = t('label.save'),
cancelLabel = t('label.cancel'),
loading = false,
@ -116,10 +114,7 @@ export const useFormDrawer = <T = any,>(config: FormDrawerConfig<T>) => {
label: cancelLabel,
variant: 'text',
testId: cancelTestId,
onClick: () => {
closeRef.current();
onReset?.(); // Reset form on cancel
},
onClick: () => closeRef.current(),
},
primaryButton: {
label: submitLabel,
@ -136,7 +131,6 @@ export const useFormDrawer = <T = any,>(config: FormDrawerConfig<T>) => {
// Form submission error handled by caller
} finally {
setIsSubmitting(false);
onReset?.(); // Reset form on submit
}
},
},
@ -179,11 +173,7 @@ export const useFormDrawer = <T = any,>(config: FormDrawerConfig<T>) => {
*/
export const useFormDrawerWithRef = <T = any,>(
config: FormDrawerConfig<T> & {
formRef?: {
submit: () => void;
validateFields?: () => Promise<any>;
resetFields: () => void;
};
formRef?: { submit: () => void; validateFields?: () => Promise<any> };
}
) => {
const { formRef, onSubmit, ...restConfig } = config;
@ -208,7 +198,6 @@ export const useFormDrawerWithRef = <T = any,>(
const drawer = useFormDrawer({
...restConfig,
onSubmit: handleSubmit,
onReset: formRef?.resetFields,
});
const submitForm = useCallback(() => {