diff --git a/src/components/dashboard/reports/ExcelExport/index.jsx b/src/components/dashboard/reports/ExcelExport/index.jsx index a17e2af..f12cc59 100644 --- a/src/components/dashboard/reports/ExcelExport/index.jsx +++ b/src/components/dashboard/reports/ExcelExport/index.jsx @@ -19,7 +19,7 @@ const ExcelExport = () => { auth: true, requestOptions: {responseType: 'blob'} }).then((response) => { - const filename = `گزارش عملکرد_${moment().format('jYYYY_jMM_jDD')}.xlsx`; + const filename = `گزارش عملکرد_${moment().format('jDD_jMM_jYYYY')}.xlsx`; FileSaver.saveAs(response.data, filename); }).catch(() => { }).finally(() => {