From 296f85e33b1bdd33b2910cf332be055729a4b991 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Wed, 29 Apr 2026 08:41:07 -0400 Subject: [PATCH] Fix progress widget 'Set how you get paid' link pointing to non-existent #general tab Payment terms lives in the App Defaults tab (#app-defaults), not #general. Co-Authored-By: Claude Sonnet 4.6 --- src/PowderCoating.Web/Controllers/DashboardController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PowderCoating.Web/Controllers/DashboardController.cs b/src/PowderCoating.Web/Controllers/DashboardController.cs index a353c23..0dc3f75 100644 --- a/src/PowderCoating.Web/Controllers/DashboardController.cs +++ b/src/PowderCoating.Web/Controllers/DashboardController.cs @@ -767,7 +767,7 @@ public class DashboardController : Controller DoneSubLabel = "Your payment defaults are locked in.", Icon = "bi-file-earmark-text", CtaText = "Set payment terms", - CtaUrl = Url.Action("Index", "CompanySettings") + "#general" + CtaUrl = Url.Action("Index", "CompanySettings") + "#app-defaults" } };