formatting

This commit is contained in:
AmirHossein Mahmoodi
2025-06-03 10:22:00 +03:30
parent 51e02f2aa6
commit a812049cfe
2 changed files with 2 additions and 4 deletions

View File

@@ -44,7 +44,7 @@ const ReferContent = ({ row, mutate, setOpenReferDialog }) => {
mutate();
setOpenReferDialog(false);
})
.catch(() => { });
.catch(() => {});
};
return (

View File

@@ -24,9 +24,7 @@ const Refer = ({ row, mutate }) => {
}}
>
<DialogTitle>ارجاع</DialogTitle>
{openReferDialog && (
<ReferContent mutate={mutate} row={row} setOpenReferDialog={setOpenReferDialog} />
)}
{openReferDialog && <ReferContent mutate={mutate} row={row} setOpenReferDialog={setOpenReferDialog} />}
</Dialog>
</>
);