fix(chat): clarify daily free chat limit

This commit is contained in:
2026-07-17 12:47:39 +08:00
parent eac3d8f0a7
commit 3437312167
2 changed files with 4 additions and 4 deletions
@@ -13,8 +13,8 @@ afterEach(() => {
describe("getInsufficientCreditsMessageLimitView", () => {
it("shows the same top-up prompt without checking login status", () => {
expect(getInsufficientCreditsMessageLimitView()).toEqual({
title: "Insufficient credits",
description: "Free chats refresh every day.",
title: "Out of Daily Free Chats",
description: "",
ctaLabel: "Top up credits to continue",
});
});
+2 -2
View File
@@ -37,8 +37,8 @@ export function shouldShowMessageLimitBanner({
export function getInsufficientCreditsMessageLimitView():
InsufficientCreditsMessageLimitView {
return {
title: "Insufficient credits",
description: "Free chats refresh every day.",
title: "Out of Daily Free Chats",
description: "",
ctaLabel: "Top up credits to continue",
};
}