diff --git a/frontend/src/components/BillingStatus.tsx b/frontend/src/components/BillingStatus.tsx
index 6f208fdf6..0c6560386 100644
--- a/frontend/src/components/BillingStatus.tsx
+++ b/frontend/src/components/BillingStatus.tsx
@@ -63,11 +63,11 @@ export function BillingStatus() {
if (!billingStatus.can_chat) {
if (isMax) {
return hasApiAccess
- ? "Purchase API credits or contact us to increase limits"
+ ? "Purchase extra credits or contact us to increase limits"
: "Contact us to increase your limits";
}
return hasApiAccess
- ? "Upgrade your plan or purchase API credits to keep chatting!"
+ ? "Upgrade your plan or purchase extra credits to keep chatting!"
: "You've run out of messages, upgrade to keep chatting!";
}
diff --git a/frontend/src/components/CreditUsage.tsx b/frontend/src/components/CreditUsage.tsx
index 63c9c5fc5..fddec4bc0 100644
--- a/frontend/src/components/CreditUsage.tsx
+++ b/frontend/src/components/CreditUsage.tsx
@@ -54,7 +54,7 @@ export function CreditUsage() {
{hasApiCredits && (
- + {formatCredits(billingStatus.api_credit_balance ?? 0)} API credits
+ + {formatCredits(billingStatus.api_credit_balance ?? 0)} extra credits
)}
{formatResetDate(billingStatus.usage_reset_date)}
diff --git a/frontend/src/components/UpgradePromptDialog.tsx b/frontend/src/components/UpgradePromptDialog.tsx
index 5e9ea804d..28a1b2d85 100644
--- a/frontend/src/components/UpgradePromptDialog.tsx
+++ b/frontend/src/components/UpgradePromptDialog.tsx
@@ -137,8 +137,8 @@ export function UpgradePromptDialog({
description: isFreeTier
? "You've reached your daily free tier limit. Upgrade to Pro for unlimited daily usage."
: isPro
- ? "You've reached your Pro plan's monthly limit. Upgrade to Max for 10x more usage, or purchase API credits to continue chatting."
- : "You've reached your monthly usage limit. Purchase API credits to continue chatting, or wait for the next billing cycle.",
+ ? "You've reached your Pro plan's monthly limit. Upgrade to Max for 10x more usage, or purchase extra credits to continue chatting."
+ : "You've reached your monthly usage limit. Purchase extra credits to continue chatting, or wait for the next billing cycle.",
requiredPlan: nextPlan,
benefits: isFreeTier
? [
@@ -155,11 +155,11 @@ export function UpgradePromptDialog({
"Access to all premium models including DeepSeek R1",
"Highest priority during peak times",
"Maximum rate limits for power users",
- "Or purchase API credits to keep chatting now"
+ "Or purchase extra credits to keep chatting now"
]
: [
"You're already on our highest individual plan",
- "Purchase API credits to extend your usage",
+ "Purchase extra credits to extend your usage",
"Monthly usage automatically refreshes",
"Contact support for custom enterprise plans"
]
@@ -249,7 +249,7 @@ export function UpgradePromptDialog({
{feature === "usage" && hasApiAccess && (
)}
{/* Show "Start New Chat" for free tier conversation limit, "Maybe Later" for others */}
diff --git a/frontend/src/components/apikeys/ApiCreditsSection.tsx b/frontend/src/components/apikeys/ApiCreditsSection.tsx
index 7b2c22bde..9d1fa0d7a 100644
--- a/frontend/src/components/apikeys/ApiCreditsSection.tsx
+++ b/frontend/src/components/apikeys/ApiCreditsSection.tsx
@@ -187,7 +187,7 @@ export function ApiCreditsSection({ showSuccessMessage = false }: ApiCreditsSect