diff --git a/src/app/(withAuth)/dashboard/damages/report/page.js b/src/app/(withAuth)/dashboard/damages/report/page.js
index a9d9507..d6bfd78 100644
--- a/src/app/(withAuth)/dashboard/damages/report/page.js
+++ b/src/app/(withAuth)/dashboard/damages/report/page.js
@@ -1,7 +1,11 @@
-import DamagesReportPage from "@/components/dashboard/damages/report"
-import WithPermission from "@/core/middlewares/withPermission"
+import DamagesReportPage from "@/components/dashboard/damages/report";
+import WithPermission from "@/core/middlewares/withPermission";
const Page = () => {
- return
-}
-export default Page
\ No newline at end of file
+ return (
+
+
+
+ );
+};
+export default Page;
diff --git a/src/components/dashboard/azmayesh/Forms/CandUAzmayesh/index.jsx b/src/components/dashboard/azmayesh/Forms/CandUAzmayesh/index.jsx
index 960946d..8ce5b88 100644
--- a/src/components/dashboard/azmayesh/Forms/CandUAzmayesh/index.jsx
+++ b/src/components/dashboard/azmayesh/Forms/CandUAzmayesh/index.jsx
@@ -1,13 +1,27 @@
"use client";
-import { Dialog } from "@mui/material";
+import { Dialog, IconButton } from "@mui/material";
import FormAndRequest from "./FormAndRequest";
import DialogLoading from "@/core/components/DialogLoading";
+import CloseIcon from "@mui/icons-material/Close";
const CandUAzmayesh = ({ open, setOpen, mutate, updateInfo, rowId, loadingOpen, fromUpdate = false }) => {
const isUpdateReady = fromUpdate ? updateInfo !== null : true;
return (