Skip to content

Commit 198724b

Browse files
committed
fixes + tests
1 parent 2e275e8 commit 198724b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

devContainerization/Dockerfile.backend.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ COPY ./src/shared src/shared
1414
RUN yarn prisma:generate
1515

1616
EXPOSE 3001
17-
CMD [ "sh", "-c", "yarn workspace backend dev" ]
17+
CMD [ "sh", "-c", "yarn workspace backend dev" ]

src/backend/src/services/reimbursement-requests.services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
// eslint-disable-next-line @typescript-eslint/no-unused-vars
7-
import { Reimbursement_Request, Reimbursement_Status_Type, Organization, Prisma } from '@prisma/client';
7+
import { Reimbursement_Request, Reimbursement_Status_Type, Organization } from '@prisma/client';
88
import {
99
Reimbursement,
1010
ReimbursementReceiptCreateArgs,

src/frontend/src/apis/finance.api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ export const getPendingAdvisorList = () => {
363363
* @param saboNumber the SABO number to set
364364
*/
365365
export const setSaboNumber = async (requestId: string, saboNumber: string) => {
366-
await axios.post(apiUrls.financeSetSaboNumber(requestId), {
366+
return axios.post(apiUrls.financeSetSaboNumber(requestId), {
367367
saboNumber
368368
});
369369
};

0 commit comments

Comments
 (0)