File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 5
5
/* eslint-disable no-param-reassign */
6
6
import _ from 'lodash' ;
7
7
8
- const { AV_SCAN_SCORER_REVIEW_TYPE_ID , AV_SCAN_TYPE_IDS , PROVISIONAL_SCORING_COMPLETED_REVIEW_TYPE_ID } = CONFIG ;
8
+ const { AV_SCAN_TYPE_IDS , PROVISIONAL_SCORING_COMPLETED_REVIEW_TYPE_ID } = CONFIG ;
9
9
10
10
function removeDecimal ( num ) {
11
11
const re = new RegExp ( '^-?\\d+' ) ;
@@ -122,9 +122,6 @@ export function processMMSubmissions(submissions) {
122
122
data [ memberId ] = [ ] ;
123
123
}
124
124
const validReviews = _ . reject ( submission . review , review => AV_SCAN_TYPE_IDS . includes ( review . typeId ) ) ;
125
- console . log ( AV_SCAN_SCORER_REVIEW_TYPE_ID , 'AV_SCAN_SCORER_REVIEW_TYPE_ID' ) ;
126
- console . log ( submission . review , 'submission.review' ) ;
127
- console . log ( validReviews , 'validReviews' ) ;
128
125
validReviews . sort ( ( a , b ) => {
129
126
const dateA = new Date ( a . created ) ;
130
127
const dateB = new Date ( b . created ) ;
You can’t perform that action at this time.
0 commit comments