Skip to content

Commit

Permalink
Default grant value if unexpected/no type
Browse files Browse the repository at this point in the history
  • Loading branch information
dneed-nimble committed Sep 26, 2023
1 parent 4b57d14 commit f7764c6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ private void RePopDatePickerModelsAfterValidationFail()
SponsoredGrantType.FastTrack => 70000,
SponsoredGrantType.Full => 110000,
SponsoredGrantType.Intermediate => 90000,
_ => 0
_ => 25000
};
case "secondary":
return type switch
{
SponsoredGrantType.FastTrack => 80000,
SponsoredGrantType.Full => 150000,
SponsoredGrantType.Intermediate => 115000,
_ => 0
_ => 25000
};
}

Expand Down

0 comments on commit f7764c6

Please sign in to comment.