File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -343,7 +343,11 @@ export function* mockBackendSaga(): SagaIterator {
343343 return gradingQuestion ;
344344 } ) ;
345345 yield put (
346- actions . updateGrading ( submissionId , { answers : newGrading , assessment : grading . assessment } )
346+ actions . updateGrading ( submissionId , {
347+ answers : newGrading ,
348+ assessment : grading . assessment ,
349+ enable_llm_grading : false
350+ } )
347351 ) ;
348352 yield call ( showSuccessMessage , 'Submitted!' , 1000 ) ;
349353 } ;
Original file line number Diff line number Diff line change @@ -637,7 +637,11 @@ function* sendGrade(
637637 } ) ;
638638
639639 yield put (
640- actions . updateGrading ( submissionId , { answers : newGrading , assessment : grading . assessment } )
640+ actions . updateGrading ( submissionId , {
641+ answers : newGrading ,
642+ assessment : grading . assessment ,
643+ enable_llm_grading : false
644+ } )
641645 ) ;
642646}
643647
You can’t perform that action at this time.
0 commit comments