Skip to content

Commit

Permalink
Merge pull request #131 from Giveth/fix-rf6
Browse files Browse the repository at this point in the history
fix shouldHandlePrelimResult
  • Loading branch information
MohammadPCh authored Oct 14, 2024
2 parents d091aec + 1a7aea6 commit 55bf192
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/features/import-projects/retroList/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ export const fetchAndProcessRlProjects = async (
rfRound: round,
};

if (shouldHandlePrelimResult)
await updateOrCreateProject(processedProject, rlSourceConfig);
await updateOrCreateProject(processedProject, rlSourceConfig);
}

// After processing all new projects, handle projects not in the new dataset for the current round
await manageProjectRemovals(data, rlSourceConfig, round);
if (shouldHandlePrelimResult)
await manageProjectRemovals(data, rlSourceConfig, round);
} catch (error: any) {
console.log("error on fetchAndProcessRlProjects", error.message);
}
Expand Down

0 comments on commit 55bf192

Please sign in to comment.