spelling: associate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-06-19 01:36:40 -04:00
parent efffdc021b
commit b6d8766173
24 changed files with 27 additions and 27 deletions

View File

@@ -541,7 +541,7 @@ export default class BillPaymentsService implements IBillPaymentsService {
oldBillPayment,
} as IBillPaymentDeletingPayload);
// Deletes the bill payment assocaited entries.
// Deletes the bill payment associated entries.
await BillPaymentEntry.query(trx)
.where('bill_payment_id', billPaymentId)
.delete();

View File

@@ -71,7 +71,7 @@ export default class BillPaymentsPages {
): Promise<IBillReceivePageEntry[]> {
const { Bill } = this.tenancy.models(tenantId);
// Retrieve all payable bills that assocaited to the payment made transaction.
// Retrieve all payable bills that associated to the payment made transaction.
const payableBills = await Bill.query()
.modify('opened')
.modify('dueBills')