Fixed date value for properties.

This commit is contained in:
Mike Cao 2024-08-20 00:34:01 -07:00
parent 10239fefcd
commit 5aba9acb81
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ function getClient() {
return client;
}
function getUTCString(date?: Date) {
function getUTCString(date?: Date | string | number) {
return formatInTimeZone(date || new Date(), 'UTC', 'yyyy-MM-dd HH:mm:ss');
}