Greetings! I apologize for the delay in answering. I am using the code that is on the plugin’s official website: https://senseilms.com/documentation/allow-teachers-to-grade-all-quizzes/
add_filter('sensei_check_for_activity', 'sensei_allow_teachers_to_grade_all_quizzes', 5 );
function sensei_allow_teachers_to_grade_all_quizzes( $args ){
// remove the limit
remove_filter( 'sensei_check_for_activity' , array( Sensei()->teacher, 'filter_grading_activity_queries') );
// make sure to the return the expected arguments
return $args;
}