From 0e5c60dab643279f8fc765d08a4d96e51e89219b Mon Sep 17 00:00:00 2001 From: James Date: Mon, 9 Feb 2026 10:01:11 -0500 Subject: [PATCH] fix: update Open button URL from /prompts to /trackers --- portal/dossier_sections.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/portal/dossier_sections.go b/portal/dossier_sections.go index 8f91244..f8a3c49 100644 --- a/portal/dossier_sections.go +++ b/portal/dossier_sections.go @@ -121,7 +121,7 @@ func BuildDossierSections(targetID, targetHex string, target *lib.Dossier, p *li switch cfg.ID { case "checkin": - section.ActionURL = fmt.Sprintf("/dossier/%s/prompts", targetHex) + section.ActionURL = fmt.Sprintf("/dossier/%s/trackers", targetHex) section.ActionLabel = T("open") // Count trackable categories @@ -149,7 +149,7 @@ func BuildDossierSections(targetID, targetHex string, target *lib.Dossier, p *li // Show build profile prompt section.ShowBuildTracker = true section.Summary = T("checkin_build_profile") - promptsURL := fmt.Sprintf("/dossier/%s/prompts", targetHex) + promptsURL := fmt.Sprintf("/dossier/%s/trackers", targetHex) section.TrackerButtons = []TrackerButton{ {Label: T("btn_vitals"), URL: promptsURL + "?add=vital"}, {Label: T("btn_medications"), URL: promptsURL + "?add=medication"},