From fe6115f2fc9025ccf4585a86519e8ed99915774e Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 31 Mar 2026 23:45:17 +0000 Subject: [PATCH] Rebuild sx-browser.js with named-let set! fix Co-Authored-By: Claude Opus 4.6 (1M context) --- shared/static/scripts/sx-browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/static/scripts/sx-browser.js b/shared/static/scripts/sx-browser.js index b2f051f3..92d66ba4 100644 --- a/shared/static/scripts/sx-browser.js +++ b/shared/static/scripts/sx-browser.js @@ -24,7 +24,7 @@ // ========================================================================= var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } }); - var SX_VERSION = "2026-03-31T21:28:15Z"; + var SX_VERSION = "2026-03-31T23:22:57Z"; function isNil(x) { return x === NIL || x === null || x === undefined; } function isSxTruthy(x) { return x !== false && !isNil(x); }