diff --git a/components/app.vue b/components/app.vue
index 24dd9ab..3ab3205 100644
--- a/components/app.vue
+++ b/components/app.vue
@@ -29,10 +29,10 @@ const user = {
status: 1,
}
-// The default fees of a new loan
+// The default fees of a new loan. Percentage values take precedent over amounts
const fees = [
- { name: 'Processing fee', type: 'Lender Fees', amount: 500 },
- { name: 'Underwriting fee', type: 'Lender Fees', amount: 500 },
+ { name: 'Processing fee', type: 'Lender Fees', amount: 500, perc: 0 },
+ { name: 'Underwriting fee', type: 'Lender Fees', amount: 500, perc: 0 },
{ name: 'Credit Report', type: 'Services Required by Lender',
amount: 52.50 },
{ name: 'Appraisal', type: 'Services Required by Lender', amount: 52.50 },
diff --git a/components/estimates.vue b/components/estimates.vue
index 201e6d7..f2c931e 100644
--- a/components/estimates.vue
+++ b/components/estimates.vue
@@ -8,13 +8,13 @@
:key="fee.name + indx" class="fee"
>
remove(indx, 1)">
-
+