Compare commits

..

No commits in common. "b7420a1df68188295bbd62f535228c87ed10c7b3" and "43acce3b51023419d0f7c7ccf4433be34ac80289" have entirely different histories.

View File

@ -89,8 +89,6 @@ const SummaryPage = () => {
useEffect(() => {
let active = true;
if (!user || isLoading) return undefined;
const loadProjects = async () => {
setIsProjectsLoading(true);
try {
@ -110,7 +108,7 @@ const SummaryPage = () => {
return () => {
active = false;
};
}, [user, isLoading, selectedBranch?.id, projectsReloadKey]);
}, [selectedBranch?.id, projectsReloadKey]);
useEffect(() => {
let active = true;
@ -474,7 +472,7 @@ const SummaryPage = () => {
initialState: {
columnPinning: { right: ['actions'], left: ['mrt-row-expand', 'project'] },
},
state: { isLoading: isLoading || isProjectsLoading },
state: { isLoading: isProjectsLoading },
});
const summaryProjectTable = useMaterialReactTable({