diff --git a/.env.example b/.env.example index 931ed06679c209..3a20de51d2db9e 100644 --- a/.env.example +++ b/.env.example @@ -365,7 +365,6 @@ APP_ROUTER_BOOKING_ENABLED=0 APP_ROUTER_BOOKINGS_STATUS_ENABLED=0 APP_ROUTER_APPS_ENABLED=0 APP_ROUTER_TEAM_ENABLED=0 -APP_ROUTER_TEAMS_ENABLED=0 APP_ROUTER_AUTH_FORGOT_PASSWORD_ENABLED=0 APP_ROUTER_AUTH_LOGIN_ENABLED=0 APP_ROUTER_AUTH_LOGOUT_ENABLED=0 diff --git a/apps/web/abTest/middlewareFactory.ts b/apps/web/abTest/middlewareFactory.ts index 4428b29d5b5afe..33fc3776c95f54 100644 --- a/apps/web/abTest/middlewareFactory.ts +++ b/apps/web/abTest/middlewareFactory.ts @@ -23,7 +23,6 @@ const ROUTES: [URLPattern, boolean][] = [ ["/bookings/:status", process.env.APP_ROUTER_BOOKINGS_STATUS_ENABLED === "1"] as const, ["/booking/:path*", process.env.APP_ROUTER_BOOKING_ENABLED === "1"] as const, ["/team", process.env.APP_ROUTER_TEAM_ENABLED === "1"] as const, - ["/teams", process.env.APP_ROUTER_TEAMS_ENABLED === "1"] as const, ].map(([pathname, enabled]) => [ new URLPattern({ pathname, diff --git a/apps/web/app/future/teams/page.tsx b/apps/web/app/teams/page.tsx similarity index 100% rename from apps/web/app/future/teams/page.tsx rename to apps/web/app/teams/page.tsx diff --git a/apps/web/pages/teams/index.tsx b/apps/web/pages/teams/index.tsx deleted file mode 100644 index 271dd9941a116e..00000000000000 --- a/apps/web/pages/teams/index.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import PageWrapper from "@components/PageWrapper"; - -import type { PageProps } from "~/teams/teams-view"; -import Teams from "~/teams/teams-view"; - -export { getServerSideProps } from "@lib/teams/getServerSideProps"; - -const Page = (props: PageProps) => ; -Page.PageWrapper = PageWrapper; -export default Page; diff --git a/apps/web/scripts/vercel-app-router-deploy.sh b/apps/web/scripts/vercel-app-router-deploy.sh index 1e4fcb745be04c..5ec76216837654 100755 --- a/apps/web/scripts/vercel-app-router-deploy.sh +++ b/apps/web/scripts/vercel-app-router-deploy.sh @@ -23,7 +23,6 @@ checkRoute "$APP_ROUTER_AUTH_OAUTH2_ENABLED" app/future/auth/oauth2 checkRoute "$APP_ROUTER_BOOKINGS_STATUS_ENABLED" app/future/bookings checkRoute "$APP_ROUTER_BOOKING_ENABLED" app/future/booking checkRoute "$APP_ROUTER_TEAM_ENABLED" app/future/team -checkRoute "$APP_ROUTER_TEAMS_ENABLED" app/future/teams # These are routes that don't have and environment variable to enable or disable them # Will stop removing gradually as we test and confirm that they are working diff --git a/turbo.json b/turbo.json index f288885af3c41f..04fc464950a74c 100644 --- a/turbo.json +++ b/turbo.json @@ -252,7 +252,6 @@ "APP_ROUTER_AUTH_PLATFORM_ENABLED", "APP_ROUTER_AUTH_OAUTH2_ENABLED", "APP_ROUTER_TEAM_ENABLED", - "APP_ROUTER_TEAMS_ENABLED", "APP_USER_NAME", "BASECAMP3_CLIENT_ID", "BASECAMP3_CLIENT_SECRET",