From c9c1a50103b09aa7ee7c63090af743ad66f05408 Mon Sep 17 00:00:00 2001 From: Mischa Date: Sun, 21 Jun 2026 16:11:41 +0200 Subject: [PATCH] fix: correct Alpine scope for notes panel, tojson escaping, remove dead code Co-Authored-By: Claude Sonnet 4.6 --- services/travel-memories/app/routes/albums.py | 1 + services/travel-memories/app/routes/notes.py | 2 -- services/travel-memories/app/templates/base.html | 6 +++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/services/travel-memories/app/routes/albums.py b/services/travel-memories/app/routes/albums.py index 4845c2f..1cdd45c 100644 --- a/services/travel-memories/app/routes/albums.py +++ b/services/travel-memories/app/routes/albums.py @@ -4,6 +4,7 @@ from app.state import load_state bp = Blueprint("albums", __name__) +# TODO(task-6): replace this stub with the real triage route @bp.get("/triage") def triage(): album_id = request.args.get("album_id", "") diff --git a/services/travel-memories/app/routes/notes.py b/services/travel-memories/app/routes/notes.py index e1e7b3e..987cc4c 100644 --- a/services/travel-memories/app/routes/notes.py +++ b/services/travel-memories/app/routes/notes.py @@ -3,8 +3,6 @@ from app.state import load_state, save_state bp = Blueprint("notes", __name__) -PHASE_ORDER = ["triage", "curate", "group", "write", "export"] - @bp.post("/notes/save") def save_notes(): diff --git a/services/travel-memories/app/templates/base.html b/services/travel-memories/app/templates/base.html index fac39f8..db6c909 100644 --- a/services/travel-memories/app/templates/base.html +++ b/services/travel-memories/app/templates/base.html @@ -7,7 +7,7 @@ - + @@ -45,7 +45,7 @@ {% endif %} -
+
{% block content %}{% endblock %}