From 3bcf476c43928f3a73ea5ac50abff70c0d594f5b Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 17 Mar 2022 18:40:54 +0100 Subject: [PATCH] Fix weird interface behavior --- assets/js/components/account/interface.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/js/components/account/interface.js b/assets/js/components/account/interface.js index c14e86e3..e095e88d 100644 --- a/assets/js/components/account/interface.js +++ b/assets/js/components/account/interface.js @@ -42,7 +42,7 @@ const AccountInterface = { var params = { email: email }; - ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback); + ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback); }, /** @@ -65,7 +65,7 @@ const AccountInterface = { var params = { email: email }; - ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback); + ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback); }, /** @@ -79,7 +79,7 @@ const AccountInterface = { var params = { email: email }; - ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback); + ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback); }, /** @@ -108,7 +108,7 @@ const AccountInterface = { email: email, answers: answersText }; - ComunicWeb.common.api.makeAPIrequest(apiURI, params, true, callback); + ComunicWeb.common.api.makeAPIrequest(apiURI, params, false, callback); },