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

@@ -140,7 +140,7 @@ export function useExecutorStats(projectId?: string): UseExecutorStatsResult {
try {
setLoading(true);
setError(null);
const data = await fetchExecutorStats();
const data = await fetchExecutorStats(projectId);
setApiData(data);
} catch (err) {
if (err instanceof Error && err.name === "AbortError") {
@@ -151,7 +151,7 @@ export function useExecutorStats(projectId?: string): UseExecutorStatsResult {
} finally {
setLoading(false);
}
}, []);
}, [projectId]);
// Initial fetch
useEffect(() => {