From 07df6d8f0a8ecf39184e334c06282da9e904944d Mon Sep 17 00:00:00 2001 From: chelsea Date: Sat, 11 Oct 2025 22:26:35 -0500 Subject: [PATCH] Fix 500 error: Change register route to signup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed BuildError caused by incorrect endpoint name in anonymous mode. The route is called 'signup' not 'register' in app.py line 878. Error was: werkzeug.routing.exceptions.BuildError: Could not build url for endpoint 'register' 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- templates/dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/dashboard.html b/templates/dashboard.html index 18a64db..10cda5c 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -24,7 +24,7 @@ {% if anonymous %} {% else %} {# This block only executes for authenticated users (per app.py line 278) #}