Skip to content

Commit

Permalink
Merge branch 'Ivy-Apps:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
shinebrillant committed Sep 21, 2024
2 parents 1aa0dd9 + 200aa7f commit fab6aa0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ class LoanViewModel @Inject constructor(
}

private fun loadCompletedLoans() {
completedLoans = allLoans.filter { loan -> loan.percentPaid == 1.0 }.toImmutableList()
completedLoans = allLoans.filter { loan -> loan.percentPaid >= 1.0 }.toImmutableList()
}

private fun loadPendingLoans() {
Expand Down

0 comments on commit fab6aa0

Please sign in to comment.