feat: update personal chat conversation page

This commit is contained in:
zhenyi 2026-05-30 15:07:51 +08:00
parent f658c5ae96
commit b489296b08

View File

@ -439,7 +439,7 @@ export default function MeChatConversationPage() {
<Sparkles className="size-3 text-primary/70" /> <Sparkles className="size-3 text-primary/70" />
</div> </div>
<h1 className="truncate text-sm font-semibold text-foreground"> <h1 className="truncate text-sm font-semibold text-foreground">
{conversation?.title ?? "Loading..."} {conversation?.title && conversation.title.trim().length > 2 ? conversation.title : "New conversation"}
</h1> </h1>
</div> </div>
</header> </header>