mirror of
https://github.com/gnmyt/myspeed.git
synced 2025-12-30 17:49:33 -06:00
Removed log statements from the IntegrationDialog.jsx
This commit is contained in:
@@ -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 (
|
||||
|
||||
Reference in New Issue
Block a user