Skip to content

Commit

Permalink
fix: typo in funding requests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanoshadjipetrou committed Jul 12, 2024
1 parent a7f557a commit 2e1d4cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/fundingrequests.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ export class FundingRequestsController {
: '--',
grant: subitem.grant,
startingDate: subitem.startingDate
? moment(subitem.startDate).format('DD MMM YYYY')
? moment(subitem.startingDate).format('DD MMM YYYY')
: '--',
endingDate: subitem.endingDate
? moment(subitem.endDate).format('DD MMM YYYY')
? moment(subitem.endingDate).format('DD MMM YYYY')
: '--',
principalRecipient: subitem.principalRecipient,
};
Expand Down

0 comments on commit 2e1d4cb

Please sign in to comment.