From 2639ef7e139d2637f9e814d2014036bce4fd36a7 Mon Sep 17 00:00:00 2001 From: Soham Datta <78294692+sohamdata@users.noreply.github.com> Date: Tue, 13 Jun 2023 16:16:41 +0530 Subject: [PATCH] fix: #9217 | redirected unready /admin to one of its tabs (#9222) --- apps/web/next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index 2e79eb455c..210e8609ef 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -293,6 +293,11 @@ const nextConfig = { destination: "/teams", permanent: true, }, + { + source: "/settings/admin", + destination: "/settings/admin/flags", + permanent: true, + }, /* V2 testers get redirected to the new settings */ { source: "/settings/profile",