From cc25be4e14aa806722d1c479c20bbea68413f29a Mon Sep 17 00:00:00 2001 From: Keysat Date: Tue, 16 Jun 2026 12:59:55 -0500 Subject: [PATCH] Fix blank-screen on load + close 3 admin gaps (v0.1.0:79) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The web UI rendered a blank screen for every user. Root cause: the page loaded @babel/standalone from unpkg with no version pin, so the CDN silently served Babel 8.0.0. Babel 8 defaults @babel/preset-react to the automatic JSX runtime, which prepends `import {jsx} from "react/jsx-runtime"` to the compiled output. An ESM import is illegal in this classic (non-module) inline - + +