You can add your own URL using the filter hook provided by plugin. It will override the default redirect URL which is I think a ‘Referral URL’ by default.
function my_function($redirect_to) {
$redirect_to = home_url();
return $redirect_to;
}
add_filter('tutor_login_redirect_url', 'my_function', 10, 1);