Skip to content

Commit

Permalink
fix: Rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed Aug 2, 2024
1 parent 3f9d403 commit a9e21d4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/models/tenure/FairholdLandRent.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { MONTHS_PER_YEAR } from "../constants";
import { Fairhold } from "../Fairhold";
import { Mortgage } from "../Mortgage";
import { MONTHS_PER_YEAR } from "../constants";

interface FairholdLandRentParams {
averageRentYearly: number;
Expand Down Expand Up @@ -60,7 +59,7 @@ export class FairholdLandRent {
landPriceOrRent: averageRentLandMonthly,
});
const discountedLandRentMonthly =
fairholdLandRent.calculateDiscountedPriceOrRent();
fairholdLandRent.discountedLandPriceOrRent

return discountedLandRentMonthly;
}
Expand Down Expand Up @@ -144,8 +143,8 @@ export class FairholdLandRent {
maintenanceCost: maintenanceCostIterative,
fairholdRentLand: fairholdRentLandIterative,
houseMortgagePaymentYearly: houseMortgagePaymentYearlyIterative,
}); // add the current price to the new build price forecast
});
}
return lifetime; // save the object
return lifetime;
}
}

0 comments on commit a9e21d4

Please sign in to comment.