From 7b6e21fa4a98ca72fb7b49ff721a14a6dd2128a1 Mon Sep 17 00:00:00 2001 From: jnsdls Date: Wed, 11 Dec 2024 21:08:43 +0000 Subject: [PATCH] update startup program URL path (#5701) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fixes: DASH-602 --- ## PR-Codex overview This PR focuses on updating the routing paths in the `framer-rewrites.js` file for the dashboard application, specifically modifying the community and grants sections. ### Detailed summary - Removed the route `"/community/ambassadors/startup-program"`. - Added the route `"/community/startup-program"`. - No other changes were made to the routing paths for community pages or grants. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- apps/dashboard/framer-rewrites.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/framer-rewrites.js b/apps/dashboard/framer-rewrites.js index 776900c4476..e0d6cc2546d 100644 --- a/apps/dashboard/framer-rewrites.js +++ b/apps/dashboard/framer-rewrites.js @@ -35,7 +35,7 @@ module.exports = [ "/privacy-policy", // -- community pages -- "/community/ambassadors", - "/community/ambassadors/startup-program", + "/community/startup-program", // -- grants -- "/grant/superchain", ];