fix(FN-000): scope dashboard project flows

This commit is contained in:
gsxdsm
2026-04-02 17:51:04 -07:00
parent bf12c22efb
commit 05f2114743
63 changed files with 1332 additions and 904 deletions

View File

@@ -49,6 +49,7 @@ export interface HeaderProps {
currentProject?: ProjectInfo | null;
onSelectProject?: (project: ProjectInfo) => void;
onViewAllProjects?: () => void;
projectId?: string;
}
function useIsMobile() {
@@ -96,6 +97,7 @@ export function Header({
currentProject,
onSelectProject,
onViewAllProjects,
projectId,
}: HeaderProps) {
const isMobile = useIsMobile();
const [isMobileSearchOpen, setIsMobileSearchOpen] = useState(false);
@@ -416,6 +418,7 @@ export function Header({
<QuickScriptsDropdown
onOpenScripts={onOpenScripts}
onRunScript={onRunScript}
projectId={projectId}
/>
)}