From c5afa8e14fbccb14c3c4d8354f2c2acf7b3e47e4 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sat, 3 Jan 2026 23:32:29 -0600 Subject: [PATCH] checkpoint --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index a28e4fe3..474fe162 100644 --- a/index.html +++ b/index.html @@ -275,7 +275,7 @@ return fetch('/kvs/branches?mount=' + encodeURIComponent(mount)) .then(r => { if (!r.ok) throw new Error('Failed to fetch branches'); - return r.text(); + return r.json(); }); } function fetchKV(mount) {