File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
src/features/import-projects Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ export const manageProjectRemovals = async (
3030 const shouldKeepProjects = newList
3131 . filter ( ( project ) => project . prelimResult === "Keep" )
3232 . map ( ( project ) => `${ sourceConfig . source } -${ project . id } ` ) ;
33- console . log ( "shouldKeepProjects" , shouldKeepProjects ) ;
3433
3534 const existingProjectsIds = await dataSource
3635 . getRepository ( Project )
@@ -41,8 +40,6 @@ export const manageProjectRemovals = async (
4140 . getMany ( )
4241 . then ( ( projects ) => projects . map ( ( proj ) => proj . id ) ) ;
4342
44- console . log ( "existingProjectsIds" , existingProjectsIds ) ;
45-
4643 const projectIdsToManipulate = existingProjectsIds . filter (
4744 ( id ) => ! shouldKeepProjects . includes ( id )
4845 ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export const fetchRFProjectsByRound = async (round: number) => {
4545 offset = res . meta . next_offset ;
4646 }
4747 } catch ( error ) {
48- console . error (
48+ console . log (
4949 `Error fetching projects for round: ${ round } at offset: ${ offset } ` ,
5050 error
5151 ) ;
You can’t perform that action at this time.
0 commit comments