Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Fix reimbursement expenseDate formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
csulit committed Oct 16, 2023
1 parent 2600f69 commit b489b83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/finance/services/reimbursement.approve.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export class ReimbursementApproveService {
fullName: reimbursement?.full_name || 'No name set',
employeeId: reimbursement?.employee_id || 'No employee id set',
expenseType: reimbursement.expense_type,
expenseDate: reimbursement.created_at,
expenseDate: reimbursement.created_at.toString(),
amount: reimbursement.amount,
receiptsAttached: reimbursement.attachment,
};
Expand Down

0 comments on commit b489b83

Please sign in to comment.