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:
parent
5d382d3442
commit
a37b9a1c95
@ -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]);
|
||||
|
@ -45,7 +45,6 @@ const ProjectOverview = () => {
|
||||
const { setLastViewed } = useLastViewedProject();
|
||||
const { uiConfig } = useUiConfig();
|
||||
|
||||
console.log({ project });
|
||||
useEffect(() => {
|
||||
setLastViewed(projectId);
|
||||
}, [projectId, setLastViewed]);
|
||||
|
Loading…
Reference in New Issue
Block a user