Skip to content

Commit e6a23f6

Browse files
Remove print statements
1 parent d82a586 commit e6a23f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/context/DockerContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const DockerContextProvider: React.FC = ({ children }) => {
3131
ipcRenderer.on('dockerResponse', (event: Electron.Event, data: any) => {
3232
// Parse result
3333
const result: IContainer[] = JSON.parse(data);
34-
console.log('docker data--->',result)
34+
3535
console.log('Number of data points (docker):', result.length);
3636
// Display single data point
3737
const newDockerData = result[0] || {};

0 commit comments

Comments
 (0)