From 3c9ac03ccce03c9a53a4dea7dd18261825ba6abb Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 28 Apr 2026 23:06:28 +0200 Subject: [PATCH] fix: show ComplianceAdvisor + PipelineSidebar without project selection Widgets were hidden behind projectId guard. Removed condition so new users can ask questions (e.g. "Wie lege ich ein Projekt an?") before creating a project. Co-Authored-By: Claude Opus 4.6 (1M context) --- admin-compliance/app/sdk/layout.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin-compliance/app/sdk/layout.tsx b/admin-compliance/app/sdk/layout.tsx index e125162..5bd3054 100644 --- a/admin-compliance/app/sdk/layout.tsx +++ b/admin-compliance/app/sdk/layout.tsx @@ -208,10 +208,10 @@ function SDKInnerLayout({ children }: { children: React.ReactNode }) { {isCommandBarOpen && setCommandBarOpen(false)} />} {/* Pipeline Sidebar (FAB on mobile/tablet, fixed on desktop xl+) */} - {projectId && } + - {/* Compliance Advisor Widget */} - {projectId && } + {/* Compliance Advisor Widget — immer sichtbar, auch ohne Projekt */} + ) }