From dc68b608a0693a88f4ae47935ebf2d3972891967 Mon Sep 17 00:00:00 2001 From: zomars Date: Mon, 5 Sep 2022 19:08:38 -0600 Subject: [PATCH] Adds apps/installed to blacklist v2 --- apps/web/middleware.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/web/middleware.ts b/apps/web/middleware.ts index 26c42ad037..8d53b468d4 100644 --- a/apps/web/middleware.ts +++ b/apps/web/middleware.ts @@ -16,7 +16,11 @@ const V2_WHITELIST = [ "/apps", "/success", ]; -const V2_BLACKLIST = ["/apps/routing_forms"]; +const V2_BLACKLIST = [ + // + "/apps/routing_forms", + "/apps/installed", +]; const middleware: NextMiddleware = async (req) => { const url = req.nextUrl;