Skip to content

Commit

Permalink
[Update] Refine billing alert message for plan-specific scenarios (#4584
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jnsdls committed Sep 13, 2024
1 parent de362ba commit ce45cb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export const BillingAlerts = () => {
key: "usage_100_alert",
title: "You have exceeded your usage limit",
// if free or growth plan, included the upgrade plan message
description: `Overages are now being charged.${isFreePlan || (isGrowthPlan && " Consider upgrading your plan to increase your included limits.")}`,
description: `Overages are now being charged.${isFreePlan || isGrowthPlan ? " Consider upgrading your plan to increase your included limits." : ""}`,
status: "warning",
componentType: "usage",
},
Expand Down

0 comments on commit ce45cb2

Please sign in to comment.