From 5ce33a02fcbb918ad7813179c711cc3e8f271f6c Mon Sep 17 00:00:00 2001 From: Oliver Foster <7974663+oliverfoster@users.noreply.github.com> Date: Wed, 7 Jan 2026 15:18:05 +0000 Subject: [PATCH] Fix: Harden execution condition typo (fixes #814) --- js/fixes/harden.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/fixes/harden.js b/js/fixes/harden.js index a655c629..e360931d 100644 --- a/js/fixes/harden.js +++ b/js/fixes/harden.js @@ -8,7 +8,7 @@ import Adapt from 'core/js/adapt'; Adapt.on('adapt:start', () => { const config = Adapt.config.get('_fixes'); if (config?._harden !== true) return; - if (window.ADAPT_BUILD_TYPE !== 'development') return; + if (window.ADAPT_BUILD_TYPE === 'development') return; applyHarden(); });