fix: remove some loggers

This commit is contained in:
Simon Lecoq
2023-09-11 20:36:55 -04:00
parent d0578c0db4
commit 956b0a78ce
2 changed files with 1 additions and 2 deletions

View File

@@ -128,7 +128,6 @@ export default async function({login, data, rest, imports, q, account}, {enabled
const height = 160
if (type === "line")
return imports.Graph.line(Object.entries(data).map(([x, y]) => ({x: +x, y})), {low, high, ticks, labels, width, height})
console.log(data)
if (type === "pie")
return imports.Graph.pie(data, {colors, width, height})
return ""