From 7df41352f6448d2fd2354e6e7f083fc023259e8e Mon Sep 17 00:00:00 2001 From: Stephon Brown Date: Tue, 27 Jan 2026 13:21:50 -0500 Subject: [PATCH] fix(billing): add additional prorated amount of months --- apps/web/src/app/billing/clients/preview-invoice.client.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/billing/clients/preview-invoice.client.ts b/apps/web/src/app/billing/clients/preview-invoice.client.ts index 65ed78315d2..20d3d1c407f 100644 --- a/apps/web/src/app/billing/clients/preview-invoice.client.ts +++ b/apps/web/src/app/billing/clients/preview-invoice.client.ts @@ -21,6 +21,7 @@ export class ProrationPreviewResponse extends BaseResponse { tax: number; total: number; credit: number; + proratedAmountOfMonths: number; constructor(response: any) { super(response); @@ -28,6 +29,7 @@ export class ProrationPreviewResponse extends BaseResponse { this.tax = this.getResponseProperty("Tax"); this.total = this.getResponseProperty("Total"); this.credit = this.getResponseProperty("Credit"); + this.proratedAmountOfMonths = this.getResponseProperty("ProratedAmountOfMonths"); } }