From d05bac865140f41000f29fe6501517cebd72b11c Mon Sep 17 00:00:00 2001 From: Phil Date: Sun, 8 Jun 2025 20:37:08 -0600 Subject: [PATCH] fix: add NEXT_API_DEBUG_MODE environment variable to MMDL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves calendar creation issue where clicking save would fail with 'Cannot read properties of undefined (Reading 'toUpperCase')' error. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- roles/docker/templates/mmdl-env.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/docker/templates/mmdl-env.j2 b/roles/docker/templates/mmdl-env.j2 index 6b56a46..f618366 100644 --- a/roles/docker/templates/mmdl-env.j2 +++ b/roles/docker/templates/mmdl-env.j2 @@ -38,4 +38,5 @@ SESSION_VALIDITY_PERIOD=30 API_URL=https://{{ subdomains.tasks }} DEBUG_MODE=false TEST_MODE=false +NEXT_API_DEBUG_MODE=false SUBTASK_RECURSION_DEPTH=5 \ No newline at end of file