fix timestamp formatting

This commit is contained in:
2023-01-27 10:55:26 +10:00
parent 03bcf2df73
commit 1f21e22dce

View File

@@ -355,7 +355,7 @@ export const timestampUtcToLocal = (utc) => {
"$1T$2.000Z" "$1T$2.000Z"
) )
); );
return format(iso, "yyyy/MM/dd hh:mm:ss"); return format(iso, "yyyy/MM/dd HH:mm:ss");
} catch (error) { } catch (error) {
/* empty */ /* empty */
} }