Skip to content

Commit 65b104f

Browse files
committed
remove console log, add back commented out container height
1 parent d7a1c1b commit 65b104f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Client/src/Pages/Infrastructure/Details/index.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,8 @@ const InfrastructureDetails = () => {
625625
</ButtonGroup>
626626
</Stack>
627627
<Stack
628-
direction="row"
628+
direction={"row"}
629+
// height={chartContainerHeight} // FE team HELP! Possibly no longer needed?
629630
gap={theme.spacing(8)} // FE team HELP!
630631
flexWrap="wrap" // //FE team HELP! Better way to do this?
631632
sx={{

Server/db/mongo/modules/monitorModule.js

-1
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,6 @@ const getMonitorsByTeamId = async (req) => {
673673
]);
674674

675675
let { monitors, filteredMonitors, summary } = results[0];
676-
console.log("filteredMonitors", filteredMonitors);
677676
filteredMonitors = filteredMonitors.map((monitor) => {
678677
if (!monitor.checks) {
679678
return monitor;

0 commit comments

Comments
 (0)