From bf2ebb9d4739d565581da5041aab80ddc2a6ed52 Mon Sep 17 00:00:00 2001 From: claude_code Date: Thu, 25 Jun 2026 00:21:53 +0300 Subject: [PATCH] fix(ai-chat): increase bottom margin for typing indicator name The name label was crowding the bouncing dots when displayed. Adding extra bottom margin (mb={8}) gives the dots room and improves readability. The change only applies when the name is shown. --- .../src/features/ai-chat/components/typing-indicator.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/ai-chat/components/typing-indicator.tsx b/apps/client/src/features/ai-chat/components/typing-indicator.tsx index a3e9f937..706f20e5 100644 --- a/apps/client/src/features/ai-chat/components/typing-indicator.tsx +++ b/apps/client/src/features/ai-chat/components/typing-indicator.tsx @@ -36,7 +36,10 @@ export default function TypingIndicator({ assistantName, showName = true }: Typi return ( {showName !== false && ( - + // Extra bottom gap (vs MessageItem's mb={4}) gives the small bouncing + // dots room below the name label; without it they crowd the label. Only + // applies when the name is shown — the nameless case spaces fine on its own. + {name ?? t("AI agent")} )}