1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Remove console log (#3037)

It seems to have slipped but let me know if it's needed. The thing is it
logs in every screen.
This commit is contained in:
Gastón Fournier 2023-02-02 20:10:36 +01:00 committed by GitHub
parent 5d382d3442
commit a37b9a1c95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -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]);

View File

@ -45,7 +45,6 @@ const ProjectOverview = () => {
const { setLastViewed } = useLastViewedProject();
const { uiConfig } = useUiConfig();
console.log({ project });
useEffect(() => {
setLastViewed(projectId);
}, [projectId, setLastViewed]);