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) <noreply@anthropic.com>
This commit is contained in:
@@ -208,10 +208,10 @@ function SDKInnerLayout({ children }: { children: React.ReactNode }) {
|
|||||||
{isCommandBarOpen && <CommandBar onClose={() => setCommandBarOpen(false)} />}
|
{isCommandBarOpen && <CommandBar onClose={() => setCommandBarOpen(false)} />}
|
||||||
|
|
||||||
{/* Pipeline Sidebar (FAB on mobile/tablet, fixed on desktop xl+) */}
|
{/* Pipeline Sidebar (FAB on mobile/tablet, fixed on desktop xl+) */}
|
||||||
{projectId && <SDKPipelineSidebar />}
|
<SDKPipelineSidebar />
|
||||||
|
|
||||||
{/* Compliance Advisor Widget */}
|
{/* Compliance Advisor Widget — immer sichtbar, auch ohne Projekt */}
|
||||||
{projectId && <ComplianceAdvisorWidget currentStep={currentStep} />}
|
<ComplianceAdvisorWidget currentStep={currentStep} />
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user