style(client): fix changed-file lint formatting

This commit is contained in:
Marco Beretta 2026-07-31 19:28:08 +02:00
parent 1a2b70aa84
commit a0c6496b62
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
2 changed files with 1 additions and 3 deletions

View file

@ -19,11 +19,11 @@ import {
} from '~/utils';
import { useLocalize, useExpandCollapse, scheduleMessageContentLayoutReconcile } from '~/hooks';
import { ToolAuthWarning, ToolAuthWarningContext } from './auth';
import { useMCPIconMap, useMCPServerNames } from '~/hooks/MCP';
import { AttachmentGroup, ReasoningCompact } from './Parts';
import { isError, StackedToolIcons } from './ToolOutput';
import { isBashProgrammaticToolCall } from './routing';
import { ASK_USER_QUESTION } from '~/utils/approval';
import { useMCPIconMap, useMCPServerNames } from '~/hooks/MCP';
import SearchVerticals from './verticals';
import store from '~/store';
@ -266,7 +266,6 @@ export default function ToolCallGroup({
* tool_call part has no output yet, so keep the present tense. */
const askQuestionsDone = allAskQuestions && (allCompleted || !isSubmitting);
/** For a single-tool group, lead with the tool's own (capitalized) label
* instead of the generic "Used 1 tool — name", which reads awkwardly. */
const singleToolLabel = useMemo(() => {

View file

@ -206,7 +206,6 @@ describe('groupSequentialToolCalls with activity labels', () => {
});
});
describe('groupSequentialToolCalls reasoning transparency', () => {
it('groups two adjacent tool calls', () => {
const result = groupSequentialToolCalls(withIndex([toolCall('a'), toolCall('b')]));