Skip to main content

max / makenotwork

Fix duplicate /changelog route causing startup panic blog.rs already defines GET /changelog with full implementation. Remove duplicate from public/mod.rs that was causing route overlap. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author: Max J. <87768334+MaxJMath@users.noreply.github.com> · 2026-05-03 04:21 UTC
Commit: 0b26e9e5caf751c633e9bfa7f86ac14013be89e9
Parent: 91d1029
1 file changed, +0 insertions, -1 deletion
@@ -71,7 +71,6 @@ pub fn public_routes() -> Router<AppState> {
71 71 .route("/pricing", get(landing::pricing_page))
72 72 .route("/use-cases", get(landing::use_cases_page))
73 73 .route("/policy", get(landing::policy_page))
74 - .route("/changelog", get(landing::changelog_page))
75 74 .route("/fan-plus", get(landing::fan_plus_page))
76 75 .route("/creators", get(creators_page))
77 76 .route("/docs", get(docs::docs_index))