File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
components/uploadFabsFile Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ const UploadFabsFileValidation = (props) => {
9292 useEffect ( ( ) => {
9393 if ( runRevalidate ) {
9494 setRunRevalidate ( false ) ;
95- ReviewHelper . revalidateSubmission ( params . submissionID , true )
95+ ReviewHelper . revalidateSubmission ( params . submissionID )
9696 . then ( ( ) => {
9797 checkFileStatus ( params . submissionID ) ;
9898 } )
Original file line number Diff line number Diff line change @@ -293,13 +293,12 @@ export const deleteSubmission = (submissionId) => {
293293 return req . promise ;
294294} ;
295295
296- export const revalidateSubmission = ( submissionId , isFabs = false ) => {
296+ export const revalidateSubmission = ( submissionId ) => {
297297 const req = apiRequest ( {
298298 url : 'restart_validation/' ,
299299 method : 'post' ,
300300 data : {
301- 'submission_id' : submissionId ,
302- 'is_fabs' : isFabs
301+ 'submission_id' : submissionId
303302 }
304303 } ) ;
305304
You can’t perform that action at this time.
0 commit comments