fix: improve parallel tool approval UX with sequential review (#79)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-11-07 17:31:00 -08:00
committed by GitHub
parent 64e1fe5011
commit 7bfc2ce25a
2 changed files with 126 additions and 85 deletions

View File

@@ -440,7 +440,9 @@ export const ApprovalDialog = memo(function ApprovalDialog({
{progress.total - (progress.current - 1)} remaining)
</Text>
)}
{isExecuting && <Text dimColor>Executing tool...</Text>}
{isExecuting && progress && progress.total > 1 && (
<Text dimColor>Executing tool...</Text>
)}
<Box height={1} />
{/* Dynamic per-tool renderer (indented) */}