Fixed country not showing.

This commit is contained in:
Mike Cao 2023-10-15 13:19:51 -07:00
parent 8d85e3fcdb
commit 69a189aae7

View File

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