Skip to content

Commit

Permalink
fix: remove optional caning
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangoulding committed May 7, 2024
1 parent 86a820b commit 5dd8a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/presenters/licences/view-licence-bills.presenter.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function _formatBillsToTableRow (bills) {
billNumber: bill.invoiceNumber,
dateCreated: formatLongDate(new Date(bill.createdAt)),
account: bill.accountNumber,
runType: bill.billRun?.batchType,
runType: bill.billRun.batchType,
financialYear: bill.financialYearEnding,
total: formatMoney(bill.netAmount),
accountId: bill.billingAccountId,
Expand Down

0 comments on commit 5dd8a74

Please sign in to comment.