Skip to content

Commit b39051a

Browse files
style(organizations): soften seat-limit exceeded warning copy (#2798)
style(organizations): soften seat limit exceeded warning copy Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
1 parent 3ccdc38 commit b39051a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

apps/web/src/components/organizations/SeatsUsageProgress.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ export function SeatsUsageProgress({
6868
)}
6969
{!isTrial && showWarnings && isOverLimit && (
7070
<p className={`font-medium text-red-400 ${textSizeClasses[size]}`}>
71-
You&apos;ve exceeded your seat limit by {usedSeats - totalSeats} seat
72-
{usedSeats - totalSeats !== 1 ? 's' : ''}. Upgrade your plan immediately.
71+
You&apos;re over your seat limit by {usedSeats - totalSeats} seat
72+
{usedSeats - totalSeats !== 1 ? 's' : ''}. Please upgrade your plan soon to avoid
73+
disruption.
7374
</p>
7475
)}
7576
{!isTrial && showWarnings && isAtLimit && !isOverLimit && (

0 commit comments

Comments
 (0)