Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
praslnx8 committed Jan 2, 2024
1 parent a223ef9 commit 5dea649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/domain/models/goal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Goal {
return 0;
}
return taggedInvestments.entries
.map((e) => e.key.getFutureValueOn(targetDate) * e.value)
.map((e) => e.key.getFutureValueOn(targetDate) * e.value / 100)
.reduce((a, b) => a + b);
}

Expand Down

0 comments on commit 5dea649

Please sign in to comment.