diff --git a/client/src/components/dashboard-components/monthly-job-costing/monthly-job-costing.component.jsx b/client/src/components/dashboard-components/monthly-job-costing/monthly-job-costing.component.jsx index d00940657..7088bc684 100644 --- a/client/src/components/dashboard-components/monthly-job-costing/monthly-job-costing.component.jsx +++ b/client/src/components/dashboard-components/monthly-job-costing/monthly-job-costing.component.jsx @@ -1,5 +1,4 @@ -import { Card, Input, Space, Typography } from "antd"; -import ResponsiveTable from "../../responsive-table/responsive-table.component"; +import { Card, Input, Space, Table, Typography } from "antd"; import axios from "axios"; import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; @@ -105,31 +104,30 @@ export default function DashboardMonthlyJobCosting({ data, ...cardProps }) { >
- ( - - + + {t("general.labels.totals")} - - + + {Dinero(costingData?.allSummaryData && costingData.allSummaryData.totalSales).toFormat()} - - + + {Dinero(costingData?.allSummaryData && costingData.allSummaryData.totalCost).toFormat()} - - + + {Dinero(costingData?.allSummaryData && costingData.allSummaryData.gpdollars).toFormat()} - - - + + + )} />