fix: small mobile respnosive fixes

This commit is contained in:
simosmik
2026-04-20 15:41:37 +00:00
parent fc3504eaed
commit 25820ed995
2 changed files with 2 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ export const ToolRenderer: React.FC<ToolRendererProps> = memo(({
wrapText={displayConfig.wrapText}
colorScheme={displayConfig.colorScheme}
resultId={mode === 'input' ? `tool-result-${toolId}` : undefined}
status={toolStatus}
status={toolStatus !== 'completed' ? toolStatus : undefined}
/>
);
}
@@ -266,7 +266,7 @@ export const ToolRenderer: React.FC<ToolRendererProps> = memo(({
})
: undefined;
const badgeElement = toolStatus ? <ToolStatusBadge status={toolStatus} /> : undefined;
const badgeElement = toolStatus && toolStatus !== 'completed' ? <ToolStatusBadge status={toolStatus} /> : undefined;
return (
<CollapsibleDisplay

View File

@@ -401,7 +401,6 @@ function ChatInterface({
onTextareaScrollSync={syncInputOverlayScroll}
onTextareaInput={handleTextareaInput}
onInputFocusChange={handleInputFocusChange}
isInputFocused={isInputFocused}
placeholder={t('input.placeholder', {
provider:
provider === 'cursor'