Progress check-in for date compare.

This commit is contained in:
Mike Cao 2024-05-23 19:35:29 -07:00
parent 24af06f3aa
commit 8cf7985dac
25 changed files with 181 additions and 61 deletions

View file

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