Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/src/data/apps/apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,8 @@
},
{
"type": "iframe",
"slug": "cliff-watch",
"title": "Cliff Watch",
"slug": "cliffwatch",
"title": "CliffWatch",
"description": "Interactive calculator showing how benefits, refundable tax credits, taxes, and net income change for US households as earnings rise",
"source": "https://cliff-watch.vercel.app/",
"tags": ["us", "featured", "policy", "interactives"],
Expand Down
11 changes: 11 additions & 0 deletions website/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,17 @@ const nextConfig: NextConfig = {
destination: "/us/california-wealth-tax/:path*",
permanent: true,
},
// CliffWatch renamed from cliff-watch → cliffwatch
{
source: "/:countryId/cliff-watch",
destination: "/:countryId/cliffwatch",
permanent: true,
},
{
source: "/:countryId/cliff-watch/:path*",
destination: "/:countryId/cliffwatch/:path*",
permanent: true,
},
];
},

Expand Down
7 changes: 6 additions & 1 deletion website/src/data/appZoneRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,15 @@ export const appZoneRoutes: AppZoneRoute[] = [
"https://coverage-compass-policy-engine.vercel.app/us/coverage-compass",
},
{
source: "/us/cliff-watch",
source: "/us/cliffwatch",
destination: "https://cliff-watch.vercel.app/",
deepDestination: "https://cliff-watch.vercel.app/:path*",
},
{
source: "/uk/cliffwatch",
destination: "https://cliff-watch.vercel.app/?country=uk",
deepDestination: "https://cliff-watch.vercel.app/:path*?country=uk",
},
{
source: "/us/marriage",
destination: "https://marriage-zeta-beryl.vercel.app/us/marriage",
Expand Down
Loading