Skip to content

Commit

Permalink
update tooltip text
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-escobedo committed Mar 17, 2023
1 parent 0d91d6a commit e4c2539
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/components/Plans/PlanDetails/StateTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,13 @@ const StateTabs: FC<StateTabsProps> = ({
} else {
switch (tab) {
case "Inactive":
return "Inactive";
return "This version is not active and has no subscriptions on it.";
case "Active":
return "If you make this version active, your other active version will become inactive.";
case "Grandfathered":
return "Grandfathered";
return "This version is no longer active, but customers on this version will be renewed to this version.";
case "Retiring":
return "This version is no longer active, and customers on this version will be renewed to the active version.";
}
}
};
Expand Down

0 comments on commit e4c2539

Please sign in to comment.