From 84ccde268e3997d7563f23e7213d28a30ef80ef8 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 9 Dec 2025 21:13:45 +0000 Subject: [PATCH] mac/webchat: remove panel padding --- apps/macos/Sources/Clawdis/Resources/WebChat/index.html | 4 ++-- apps/macos/Sources/Clawdis/WebChatWindow.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/macos/Sources/Clawdis/Resources/WebChat/index.html b/apps/macos/Sources/Clawdis/Resources/WebChat/index.html index 203147304..037ab1c71 100644 --- a/apps/macos/Sources/Clawdis/Resources/WebChat/index.html +++ b/apps/macos/Sources/Clawdis/Resources/WebChat/index.html @@ -7,11 +7,11 @@ -
Booting web chat…
+
Booting web chat…
diff --git a/apps/macos/Sources/Clawdis/WebChatWindow.swift b/apps/macos/Sources/Clawdis/WebChatWindow.swift index 262d59d99..783bf1100 100644 --- a/apps/macos/Sources/Clawdis/WebChatWindow.swift +++ b/apps/macos/Sources/Clawdis/WebChatWindow.swift @@ -114,7 +114,7 @@ final class WebChatWindowController: NSWindowController, WKNavigationDelegate, N private func loadPlaceholder() { let html = """ - Connecting to web chat… + Connecting to web chat… """ self.webView.loadHTMLString(html, baseURL: nil) } @@ -290,7 +290,7 @@ final class WebChatWindowController: NSWindowController, WKNavigationDelegate, N private func showError(_ text: String) { self.bootWatchTask?.cancel() let html = """ - Web chat failed to connect.

\( + Web chat failed to connect.

\( text) """ self.webView.loadHTMLString(html, baseURL: nil)