From bef9b80b9dc6061d27a748ef2115120a6a2feb87 Mon Sep 17 00:00:00 2001 From: Hiep Le <69354317+hieptl@users.noreply.github.com> Date: Mon, 9 Feb 2026 21:36:07 +0700 Subject: [PATCH] fix(frontend): add missing border radius to conversation loading on first load (#12796) --- .../features/conversation/conversation-loading.tsx | 14 ++++++++++++-- .../conversation-tab-content.tsx | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/frontend/src/components/features/conversation/conversation-loading.tsx b/frontend/src/components/features/conversation/conversation-loading.tsx index e556333588..cae7c2246a 100644 --- a/frontend/src/components/features/conversation/conversation-loading.tsx +++ b/frontend/src/components/features/conversation/conversation-loading.tsx @@ -1,12 +1,22 @@ import { LoaderCircle } from "lucide-react"; import { useTranslation } from "react-i18next"; import { I18nKey } from "#/i18n/declaration"; +import { cn } from "#/utils/utils"; -export function ConversationLoading() { +type ConversationLoadingProps = { + className?: string; +}; + +export function ConversationLoading({ className }: ConversationLoadingProps) { const { t } = useTranslation(); return ( -
+
{t(I18nKey.HOME$LOADING)} diff --git a/frontend/src/components/features/conversation/conversation-tabs/conversation-tab-content/conversation-tab-content.tsx b/frontend/src/components/features/conversation/conversation-tabs/conversation-tab-content/conversation-tab-content.tsx index 6a052f6a81..29332d2afc 100644 --- a/frontend/src/components/features/conversation/conversation-tabs/conversation-tab-content/conversation-tab-content.tsx +++ b/frontend/src/components/features/conversation/conversation-tabs/conversation-tab-content/conversation-tab-content.tsx @@ -58,7 +58,7 @@ export function ConversationTabContent() { const conversationTabTitle = t(activeTab.titleKey); if (shouldShownAgentLoading) { - return ; + return ; } return (