Reverse job totals.

This commit is contained in:
Patrick Fic
2021-04-07 08:50:32 -07:00
parent 38fcd750fe
commit d61805374a

View File

@@ -6,9 +6,9 @@ import JobTotalsTable from "../job-totals-table/job-totals-table.component";
export function JobsDetailTotals({ job, refetch }) { export function JobsDetailTotals({ job, refetch }) {
return ( return (
<div> <div>
<JobPayments job={job} refetch={refetch} />
<Divider />
<JobTotalsTable job={job} /> <JobTotalsTable job={job} />
<Divider />
<JobPayments job={job} refetch={refetch} />
</div> </div>
); );
} }