Remove a superfluous argument

This commit is contained in:
jvoisin 2020-12-21 14:51:48 +01:00
parent e7f7799b3e
commit e393acf5eb
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ export const getDnsStatus = () => async (dispatch) => {
try {
checkStatus(handleRequestSuccess, handleRequestError);
} catch (error) {
handleRequestError(error);
handleRequestError();
}
};