Skip to content

Commit a9f4d41

Browse files
committed
prettier and linting
1 parent 44ab55b commit a9f4d41

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/backend/src/utils/finance.utils.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import { Prisma, Reimbursement_Status_Type } from '@prisma/client';
22
import { wbsPipe, SpendingBarData, ReimbursementRequestData } from 'shared';
33
import prisma from '../prisma/prisma';
4-
import { getReimbursementRequestQueryArgs } from '../prisma-query-args/reimbursement-requests.query-args';
54
import { NotFoundException } from './errors.utils';
6-
import { getTeamQueryArgs } from '../prisma-query-args/teams.query-args';
75

86
export const getProjectSegmentedWhereInput = (
97
organizationId: string,
@@ -214,7 +212,7 @@ export const getReimbursementRequestsByProject = async (
214212
},
215213
select: {
216214
reimbursementStatuses: true,
217-
totalCost: true,
215+
totalCost: true
218216
}
219217
});
220218

@@ -314,7 +312,7 @@ export const getReimbursementRequestsByTeam = async (
314312
},
315313
select: {
316314
reimbursementStatuses: true,
317-
totalCost: true,
315+
totalCost: true
318316
}
319317
});
320318

@@ -668,7 +666,7 @@ export const getReimbursementRequestCategoryData = async (
668666
},
669667
select: {
670668
reimbursementStatuses: true,
671-
totalCost: true,
669+
totalCost: true
672670
}
673671
});
674672

0 commit comments

Comments
 (0)