all: fix formatting
diff --git a/webui/src/web-components/sketch-monaco-view.ts b/webui/src/web-components/sketch-monaco-view.ts
index 590ec5e..97fce93 100644
--- a/webui/src/web-components/sketch-monaco-view.ts
+++ b/webui/src/web-components/sketch-monaco-view.ts
@@ -581,20 +581,20 @@
     try {
       // Disable semantic validation globally for TypeScript/JavaScript
       monaco.languages.typescript.typescriptDefaults.setDiagnosticsOptions({
-        noSemanticValidation: true
+        noSemanticValidation: true,
       });
       monaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({
-        noSemanticValidation: true
+        noSemanticValidation: true,
       });
-      
+
       // First time initialization
       if (!this.editor) {
         // Create the diff editor only once
         this.editor = monaco.editor.createDiffEditor(this.container.value!, {
           automaticLayout: true,
           // Make it read-only by default
-        // We'll adjust individual editor settings after creation
-        readOnly: true,
+          // We'll adjust individual editor settings after creation
+          readOnly: true,
           theme: "vs", // Always use light mode
           renderSideBySide: true,
           ignoreTrimWhitespace: false,
@@ -623,8 +623,8 @@
 
       // Create or update models
       this.updateModels();
-          // Set up content change listener
-          this.setupContentChangeListener();
+      // Set up content change listener
+      this.setupContentChangeListener();
 
       // Force layout recalculation after a short delay
       // This ensures the editor renders properly, especially with single files