From 1679b9dd86d2c04d3e031aa0eba9f52bb47ddea2 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 28 May 2023 19:12:26 +0200 Subject: [PATCH] Removed log statements from the IntegrationDialog.jsx --- .../components/IntegrationDialog/IntegrationDialog.jsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/src/common/components/IntegrationDialog/IntegrationDialog.jsx b/client/src/common/components/IntegrationDialog/IntegrationDialog.jsx index cff2ecb2..edec771d 100644 --- a/client/src/common/components/IntegrationDialog/IntegrationDialog.jsx +++ b/client/src/common/components/IntegrationDialog/IntegrationDialog.jsx @@ -53,12 +53,10 @@ export const IntegrationDialog = (props) => { useEffect(() => { jsonRequest("/integrations") - .then(data => setIntegrationData(data)) - .catch(err => console.log(err)); + .then(data => setIntegrationData(data)); jsonRequest("/integrations/active") - .then(data => setActiveData(data.map(item => ({...item, uuid: uuid()})))) - .catch(err => console.log(err)); + .then(data => setActiveData(data.map(item => ({...item, uuid: uuid()})))); }, []); return (