refactor: return user stats & made release votes preview as a list

This commit is contained in:
Kentai Radiquum 2025-04-03 21:38:51 +05:00
parent 8cf1bb534d
commit cbdcfedb9b
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 61 additions and 84 deletions

View file

@ -212,9 +212,9 @@ export function unixToDate(
" " +
date.getFullYear() +
", " +
date.getHours() +
`${date.getHours()}`.padStart(2, "0") +
":" +
date.getMinutes()
`${date.getMinutes()}`.padStart(2, "0")
);
if (type === "dayMonth")
return date.getDate() + " " + months[date.getMonth()];