From 067465ab359db6d4acfb7c272ff6919262bab69f Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 20 Mar 2026 18:29:29 +0000 Subject: [PATCH] Expect only one format from our API What are we, LLMs? --- html/template/sync/communication-root.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/template/sync/communication-root.html b/html/template/sync/communication-root.html index 2ab7d26e..098522e2 100644 --- a/html/template/sync/communication-root.html +++ b/html/template/sync/communication-root.html @@ -100,7 +100,7 @@ } const data = await response.json(); - this.communications = data.communications || data; // Handle different response formats + this.communications = data.communications; // if we already had something selected, reset it using the new data if (this.selectedCommunication) { const matching = this.communications.filter((report) => {