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 (