Skip to content

Commit

Permalink
Fix permit fee in permit documentation (#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
praju-aot authored Jun 13, 2024
1 parent a9d6e01 commit 5b10647
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions vehicles/src/common/helper/format-template-data.helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ export const formatTemplateData = (
template.companyAlternateName = companyInfo.alternateName;

// Format Fee Summary
template.permitData.feeSummary =
template.permitData.permitDuration.toString(); // TODO: get from frontend
template.permitData.feeSummary = permit.permitTransactions
?.at(0)
?.transactionAmount.toString();

revisionHistory?.forEach((revision) => {
if (
Expand Down

0 comments on commit 5b10647

Please sign in to comment.