From 5fde02165a7032155232a47cd941d6f96862e13e Mon Sep 17 00:00:00 2001 From: "Ishaan (OpenClaw)" Date: Sun, 8 Feb 2026 13:57:16 +0000 Subject: [PATCH] Revert "Make /activity public so signed-out UI renders" This reverts commit 5419f01d540a27d3d7000faa2f36104dceaccdcb. --- frontend/src/proxy.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/proxy.ts b/frontend/src/proxy.ts index d48af78..6f1dfb2 100644 --- a/frontend/src/proxy.ts +++ b/frontend/src/proxy.ts @@ -9,9 +9,7 @@ const isClerkEnabled = () => ); // Public routes must include Clerk sign-in paths to avoid redirect loops. -// Also keep top-level UI routes like /activity public so the app can render a signed-out state -// (the page itself shows a SignIn button; API routes remain protected elsewhere). -const isPublicRoute = createRouteMatcher(["/sign-in(.*)", "/activity(.*)"]); +const isPublicRoute = createRouteMatcher(["/sign-in(.*)"]); export default isClerkEnabled() ? clerkMiddleware(async (auth, req) => {