all: fix formatting
diff --git a/webui/src/web-components/mobile-shell.ts b/webui/src/web-components/mobile-shell.ts
index 65b698b..1a27c05 100644
--- a/webui/src/web-components/mobile-shell.ts
+++ b/webui/src/web-components/mobile-shell.ts
@@ -154,7 +154,9 @@
     }
   };
 
-  private handleViewChange = (event: CustomEvent<{ view: "chat" | "diff" }>) => {
+  private handleViewChange = (
+    event: CustomEvent<{ view: "chat" | "diff" }>,
+  ) => {
     this.currentView = event.detail.view;
   };
 
@@ -181,9 +183,7 @@
                 .isThinking=${isThinking}
               ></mobile-chat>
             `
-          : html`
-              <mobile-diff></mobile-diff>
-            `}
+          : html` <mobile-diff></mobile-diff> `}
 
         <mobile-chat-input
           .disabled=${this.connectionStatus !== "connected"}