loop/webui: add prettier
diff --git a/loop/webui/src/web-components/sketch-chat-input.ts b/loop/webui/src/web-components/sketch-chat-input.ts
index 3e75b52..989a2e6 100644
--- a/loop/webui/src/web-components/sketch-chat-input.ts
+++ b/loop/webui/src/web-components/sketch-chat-input.ts
@@ -79,7 +79,7 @@
 
       // Update the textarea value directly, otherwise it won't update until next render
       const textarea = this.shadowRoot?.querySelector(
-        "#chatInput"
+        "#chatInput",
       ) as HTMLTextAreaElement;
       if (textarea) {
         textarea.value = content;
@@ -94,7 +94,7 @@
     // Listen for update-content events
     this.addEventListener(
       "update-content",
-      this._handleUpdateContent as EventListener
+      this._handleUpdateContent as EventListener,
     );
   }
 
@@ -105,7 +105,7 @@
     // Remove event listeners
     this.removeEventListener(
       "update-content",
-      this._handleUpdateContent as EventListener
+      this._handleUpdateContent as EventListener,
     );
   }