From e6d584fde7e6a8092b20042c9bf90d794e0abdc8 Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Mon, 24 Nov 2025 16:03:36 +0530 Subject: [PATCH] [WEB-5489] fix: prevent AppRail hook usage outside context in disabled workspace components (#8164) --- apps/web/app/(all)/[workspaceSlug]/layout.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/web/app/(all)/[workspaceSlug]/layout.tsx b/apps/web/app/(all)/[workspaceSlug]/layout.tsx index 9d0baa157..3aae37a1a 100644 --- a/apps/web/app/(all)/[workspaceSlug]/layout.tsx +++ b/apps/web/app/(all)/[workspaceSlug]/layout.tsx @@ -7,13 +7,13 @@ import { WorkspaceAuthWrapper } from "@/plane-web/layouts/workspace-wrapper"; export default function WorkspaceLayout() { return ( - - + + - - + + ); }