Skip to content

Commit

Permalink
Fix error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
gurbindersingh committed Nov 17, 2024
1 parent 52c1c2f commit 5ec36b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inputs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const inputs: Inputs[] = [
{
label: "Current Age",
description: "",
errorMessage: "This value must not be greater than your retirement age!",
errorMessage: "This value must less than or equal to your retirement age and less than the life expectancy!",
isPercentage: false,
settingsKey: "currentAge",
id: "current-age",
Expand All @@ -44,7 +44,7 @@ const inputs: Inputs[] = [
{
label: "Retirement Age",
description: "",
errorMessage: "This value must be less than the life expectancy!",
errorMessage: "This value must greater than or equal to your current age and less than the life expectancy!",
isPercentage: false,
settingsKey: "retirementAge",
id: "retirement-age",
Expand Down

0 comments on commit 5ec36b6

Please sign in to comment.