From e393acf5eb08251cd38073a181f5ddce08264af5 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Mon, 21 Dec 2020 14:51:48 +0100 Subject: [PATCH] Remove a superfluous argument --- client/src/actions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/actions/index.js b/client/src/actions/index.js index 04054091..58e2d018 100644 --- a/client/src/actions/index.js +++ b/client/src/actions/index.js @@ -287,7 +287,7 @@ export const getDnsStatus = () => async (dispatch) => { try { checkStatus(handleRequestSuccess, handleRequestError); } catch (error) { - handleRequestError(error); + handleRequestError(); } };