From 10a04c03743daed7e7d5aa8f8d06bd40e528ff88 Mon Sep 17 00:00:00 2001 From: waleed Date: Wed, 1 Jul 2026 09:43:31 -0700 Subject: [PATCH] fix(careers): remove /careers redirect so the in-app page is reachable A pre-existing permanent redirect /careers -> jobs.ashbyhq.com/sim shadowed the new first-party careers page (#5316), sending visitors straight to the Ashby board. Drop it so /careers serves the in-app page (which itself pulls the Ashby roles). --- apps/sim/next.config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/apps/sim/next.config.ts b/apps/sim/next.config.ts index 40c28328ee1..534ff891176 100644 --- a/apps/sim/next.config.ts +++ b/apps/sim/next.config.ts @@ -307,11 +307,6 @@ const nextConfig: NextConfig = { source: '/team', destination: 'https://cal.com/emirkarabeg/sim-team', permanent: false, - }, - { - source: '/careers', - destination: 'https://jobs.ashbyhq.com/sim', - permanent: true, } )