From 214e3997b0e83019eb1d1f062dd51a3e5803effb Mon Sep 17 00:00:00 2001 From: Samir Boulahtit Date: Fri, 2 Jan 2026 22:55:07 +0100 Subject: [PATCH] fix: correct block name in vendor messages template MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed {% block page_scripts %} to {% block extra_scripts %} to match the vendor base template. This was preventing messages.js from loading, causing all the Alpine.js variable errors (dark, isSideMenuOpen, etc.) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/templates/vendor/messages.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/vendor/messages.html b/app/templates/vendor/messages.html index 35dcd8f3..7d702b16 100644 --- a/app/templates/vendor/messages.html +++ b/app/templates/vendor/messages.html @@ -286,6 +286,6 @@ {% endblock %} -{% block page_scripts %} +{% block extra_scripts %} {% endblock %}