Skip to content

Commit 645b605

Browse files
committed
improve HSA catch-up eligibility calculation
1 parent 54e6eeb commit 645b605

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/Models/FamilyData/HealthSavingsAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public bool EligibleForHSA {
4545

4646
public bool EligibleForHSACatchUpOnly {
4747
get {
48-
return (!EligibleForHSA && Person!.FiftyFiveOrOver && Person.OtherPerson != null && Person.OtherPerson.HealthSavingsAccount.EligibleForHSA);
48+
return (Person!.FiftyFiveOrOver && Person.OtherPerson != null && Person.OtherPerson.HealthSavingsAccount.EligibleForHSA);
4949
}
5050
}
5151

0 commit comments

Comments
 (0)