Skip to content

Commit 9c87bb3

Browse files
committed
Merge branch 'dev' into sofia
2 parents 205d793 + 9c1ce04 commit 9c87bb3

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

app/components/AwsECSClusterGraphs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const AwsECSClusterGraphs: React.FC = React.memo(props => {
2525
colour += `00${value.toString(16)}`.substring(-2);
2626
}
2727

28-
console.log(colour);
28+
// console.log(colour);
2929
return colour;
3030
}
3131
};

app/containers/AWSGraphsContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const AwsGraphsContainer: React.FC = React.memo(props => {
9292
}
9393
};
9494

95-
console.log(awsUrl)
95+
// console.log(awsUrl)
9696

9797
return (
9898
<div className="AWS-container">

app/containers/MainContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { useContext,useState } from 'react';
22
import { Route, Routes } from 'react-router-dom';
33
import About from '../components/About/About';
44
import Contact from '../components/Contact/Contact';
5-
import Settings from '@material-ui/icons/Settings';
5+
import Settings from '../components/Setting/Setting';
66
import Occupied from '../components/Occupied/Occupied';
77
import lightAndDark from '../components/Styling';
88
import GraphsContainer from './GraphsContainer/GraphsContainer';

app/context/HealthContext.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ const HealthContextProvider: React.FC<Props> = React.memo(({ children }) => {
5555
*/
5656

5757
const fetchHealthData = useCallback(async servers => {
58-
console.log({servers})
58+
// console.log({servers})
5959
ipcRenderer.removeAllListeners('healthResponse');
6060

6161
let temp: HealthDataObject[] = [];
@@ -67,7 +67,7 @@ const HealthContextProvider: React.FC<Props> = React.memo(({ children }) => {
6767
ipcRenderer.send('healthRequest', `${service}`);
6868
ipcRenderer.on('healthResponse', (event: Electron.Event, data: string) => {
6969
let result: object[];
70-
console.log({data})
70+
// console.log({data})
7171
if (JSON.stringify(data) !== '{}' && tryParseJSON(data)) {
7272
result = JSON.parse(data);
7373
// console.log('HealthContext.tsx line 68 result: ', result, 'service', service, 'Obj key', Object.keys(result[0])[0]);

app/modals/AddModal/AddModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import './AddModal.scss';
55

66
import { TModalSetter } from '../../components/Occupied/types/Occupied';
77
import ServiceDBType from './ServiceDBType';
8-
import ServicesDescription from'./ServicesDescription';
8+
import ServicesDescription from './ServicesDescription';
99

1010
interface IFields {
1111
typeOfService: string;

0 commit comments

Comments
 (0)