fix: load claude.ai instead of /login so already-signed-in users are detected

This commit is contained in:
SuperDooper
2026-05-10 23:28:38 +02:00
parent 2cb4ddfe97
commit 4629aeffbc
+1 -1
View File
@@ -12,7 +12,7 @@ struct LoginWebView: NSViewRepresentable {
let webView = WKWebView(frame: .zero, configuration: config) let webView = WKWebView(frame: .zero, configuration: config)
webView.navigationDelegate = context.coordinator webView.navigationDelegate = context.coordinator
webView.load(URLRequest(url: URL(string: "https://claude.ai/login")!)) webView.load(URLRequest(url: URL(string: "https://claude.ai")!))
return webView return webView
} }