From 0f78931599543fe38c7bba9e4d3d4f0683a998c1 Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Mon, 11 May 2026 20:51:36 +0200 Subject: [PATCH] Diagnostics: remove stale Cookie Store section --- windows/PopupWindow.xaml.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/windows/PopupWindow.xaml.cs b/windows/PopupWindow.xaml.cs index cd9d3d1..5b83f11 100644 --- a/windows/PopupWindow.xaml.cs +++ b/windows/PopupWindow.xaml.cs @@ -570,13 +570,7 @@ public partial class PopupWindow : Window reqRows.Add(MakeRow("Time", VM.DiagLastFetch.Value.ToString("HH:mm:ss"))); AddSection("LAST REQUEST", reqRows); - // COOKIE STORE - AddSection("COOKIE STORE", [ - MakeRow("Total cookies", VM.DiagCookieCount.ToString()), - MakeRow("Claude cookies", VM.DiagClaudeCookieCount.ToString()), - MakeRow("All domains", VM.DiagCookieDomains.Count == 0 - ? "(none)" : string.Join(", ", VM.DiagCookieDomains)), ]); // STORED COOKIE NAMES @@ -637,9 +631,6 @@ public partial class PopupWindow : Window if (VM.DiagLastFetch.HasValue) sb.AppendLine($"Last fetch: {VM.DiagLastFetch.Value:HH:mm:ss}"); sb.AppendLine(); - sb.AppendLine($"Total cookies: {VM.DiagCookieCount}"); - sb.AppendLine($"Claude cookies: {VM.DiagClaudeCookieCount}"); - sb.AppendLine($"Domains: {string.Join(", ", VM.DiagCookieDomains)}"); sb.AppendLine(); sb.AppendLine("Stored cookies:"); foreach (var c in storedNames)