remove loan details in report page

This commit is contained in:
AmirHossein Mahmoodi
2024-01-06 16:18:33 +03:30
parent 6a5fad9ef8
commit 67c86628ef

View File

@@ -1,6 +1,5 @@
import LoanProgress from "@/components/dashboard/reports/LoanProgress";
import LoanDistribution from "@/components/dashboard/reports/LoanDistribution";
import LoanDetails from "@/components/dashboard/reports/LoanDetails";
import ExcelExport from "@/components/dashboard/reports/ExcelExport";
const DashboardReportsComponent = (props) => {
@@ -9,7 +8,7 @@ const DashboardReportsComponent = (props) => {
<ExcelExport/>
<LoanProgress/>
<LoanDistribution/>
<LoanDetails/>
{/*<LoanDetails/>*/}
</>
)
};