fix(AllChatsSidebar): increase font size for "no chats found" message for better visibility

This commit is contained in:
Anish Sarkar 2026-07-24 00:57:58 +05:30
parent 43ad064d3c
commit 9ec89f94de

View file

@ -487,7 +487,7 @@ function AllChatsContent({ workspaceId, className }: AllChatsContentProps) {
</div> </div>
) : isSearchMode ? ( ) : isSearchMode ? (
<div className="text-center py-8"> <div className="text-center py-8">
<p className="text-xs text-muted-foreground"> <p className="text-sm text-muted-foreground">
{t("no_chats_found") || "No chats found"} {t("no_chats_found") || "No chats found"}
</p> </p>
</div> </div>