From e4c25394e10f4969a0448a0cd4621fc9b7739618 Mon Sep 17 00:00:00 2001 From: Diego Escobedo Date: Fri, 17 Mar 2023 11:33:01 -0700 Subject: [PATCH] update tooltip text --- frontend/src/components/Plans/PlanDetails/StateTabs.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Plans/PlanDetails/StateTabs.tsx b/frontend/src/components/Plans/PlanDetails/StateTabs.tsx index 5e4747194..23f394ff7 100644 --- a/frontend/src/components/Plans/PlanDetails/StateTabs.tsx +++ b/frontend/src/components/Plans/PlanDetails/StateTabs.tsx @@ -66,11 +66,13 @@ const StateTabs: FC = ({ } 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."; } } };