From 94dbec4486d1cd4cc3709aa070c87482947a7416 Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Sat, 17 Jan 2026 14:04:38 +0500 Subject: [PATCH] web: don't render properties panel for locked sessions Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- apps/web/src/components/editor/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/editor/index.tsx b/apps/web/src/components/editor/index.tsx index 1dc6bf684..77c49c9c4 100644 --- a/apps/web/src/components/editor/index.tsx +++ b/apps/web/src/components/editor/index.tsx @@ -229,7 +229,8 @@ export default function TabsView() { ) : null} {arePropertiesVisible && activeSession && - activeSession.type !== "new" && ( + activeSession.type !== "new" && + activeSession.type !== "locked" && (