Skip to content

Commit 2c3e02c

Browse files
author
Autoformatter
committed
all: fix formatting
1 parent fcf7590 commit 2c3e02c

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

webui/src/web-components/sketch-tool-card.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,14 +232,13 @@ export class SketchToolCardPatch extends SketchTailwindElement {
232232
render() {
233233
const patchInput = JSON.parse(this.toolCall?.input);
234234

235-
const toolFailed = this.toolCall?.result_message?.tool_error;
235+
const toolFailed = this.toolCall?.result_message?.tool_error;
236236
const summaryContent = html`<span
237237
class="text-gray-600 font-mono overflow-hidden text-ellipsis whitespace-nowrap rounded"
238238
>
239-
${toolFailed
239+
${toolFailed
240240
? `${patchInput?.path}: failed`
241-
: `${patchInput?.path}: ${patchInput.patches.length} edit${patchInput.patches.length > 1 ? "s" : ""}`
242-
}
241+
: `${patchInput?.path}: ${patchInput.patches.length} edit${patchInput.patches.length > 1 ? "s" : ""}`}
243242
</span>`;
244243

245244
const inputContent = html``;

0 commit comments

Comments
 (0)