Fixed teams urls.

This commit is contained in:
Mike Cao 2024-06-01 14:06:17 -07:00
parent 8a722ff013
commit 4b67d10f04
8 changed files with 17 additions and 25 deletions

View file

@ -66,8 +66,8 @@ async function clickhouseQuery(
order by t
`,
params,
).then(a => {
return Object.values(a).map(a => {
).then(result => {
return Object.values(result).map((a: any) => {
return { x: a.x, y: Number(a.y) };
});
});