all: fix formatting
diff --git a/webui/src/web-components/sketch-tool-card-patch.ts b/webui/src/web-components/sketch-tool-card-patch.ts
index 6e93ba2..362ed0e 100644
--- a/webui/src/web-components/sketch-tool-card-patch.ts
+++ b/webui/src/web-components/sketch-tool-card-patch.ts
@@ -2,7 +2,6 @@
 import { customElement, property } from "lit/decorators.js";
 import { ToolCall } from "../types";
 
-
 @customElement("sketch-tool-card-patch")
 export class SketchToolCardPatch extends LitElement {
   @property() toolCall: ToolCall;
@@ -28,9 +27,9 @@
       </span>
       <div slot="input">
         ${patchInput.patches.map((patch) => {
-      return html`Patch operation: <b>${patch.operation}</b>
+          return html`Patch operation: <b>${patch.operation}</b>
             <pre>${patch.newText}</pre>`;
-    })}
+        })}
       </div>
       <div slot="result">
         <pre>${this.toolCall?.result_message?.tool_result}</pre>