style(chat): simplify insufficient credits description
Docker Image / Build and Push Docker Image (push) Successful in 4m30s

This commit is contained in:
2026-07-08 11:32:45 +08:00
parent f761917399
commit c8a45e126c
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ export function getInsufficientCreditsMessageLimitView(
if (loginStatus === "guest" || loginStatus === "notLoggedIn") {
return {
title: "Log in to get more free chats",
description: "Free chats refresh every day. Log in to get more chances.",
description: "Free chats refresh every day.",
ctaLabel: "Log in to continue",
action: "auth",
};
@@ -36,7 +36,7 @@ export function getInsufficientCreditsMessageLimitView(
return {
title: "Insufficient credits",
description: "Free chats refresh every day. You can also top up credits now.",
description: "Free chats refresh every day.",
ctaLabel: "Top up credits to continue",
action: "topup",
};