Update display.php

This commit is contained in:
Lizandro Guarnizo
2026-04-21 13:17:33 -05:00
parent da1b32e1a3
commit 0767dea05e
+1 -1
View File
@@ -379,7 +379,7 @@ async function cargarInicial() {
try {
const res = await fetch(url.toString());
const json = await res.json();
if (json.ok) renderSnapshot(json.data);
if (json.ok) renderSnapshot(json);
} catch (_) { /* SSE tomará el relevo */ }
}