fix(frontend): apply props destructuring

This commit is contained in:
yassinedorbozgithub 2024-10-07 16:31:50 +01:00
parent 6c17ee98b2
commit d214ea3e48

View File

@ -141,13 +141,13 @@ export const EditContentTypeFieldsDialog = ({
{t("title.manage_fields")}
</DialogTitle>
<form
onSubmit={handleSubmit(async (data) => {
onSubmit={handleSubmit(async ({ name, fields }) => {
if (!!contentType)
await updateContentType({
id: contentType.id,
params: {
fields: data.fields,
name: data.name,
name,
fields,
},
});
handleClose();