Remove a superfluous argument

This commit is contained in:
jvoisin 2020-12-21 14:51:48 +01:00
parent e7f7799b3e
commit e393acf5eb

View File

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