Skip to content

Commit

Permalink
Remove console log (#3037)
Browse files Browse the repository at this point in the history
It seems to have slipped but let me know if it's needed. The thing is it
logs in every screen.
  • Loading branch information
Gastón Fournier committed Feb 2, 2023
1 parent 5d382d3 commit a37b9a1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Expand Up @@ -36,7 +36,6 @@ const toGraphData = (metrics?: RequestsPerSecondSchema) => {
?.map(result => {
const values = (result.values || []) as ResultValue[];
const data = values.filter(value => isRecent(value)) || [];
console.log('data', data);
let reqs = 0;
if (data.length) {
reqs = parseFloat(data[data.length - 1][1]);
Expand Down
1 change: 0 additions & 1 deletion frontend/src/component/project/Project/ProjectOverview.tsx
Expand Up @@ -45,7 +45,6 @@ const ProjectOverview = () => {
const { setLastViewed } = useLastViewedProject();
const { uiConfig } = useUiConfig();

console.log({ project });
useEffect(() => {
setLastViewed(projectId);
}, [projectId, setLastViewed]);
Expand Down

0 comments on commit a37b9a1

Please sign in to comment.