fix(client): timestamps are seconds but actually
ptr.pet 4 months ago 86a2eabe 2d367d44
··· 3 }; 4 5 export const formatTimestamp = (timestamp: number): string => { 6 - return new Date(timestamp).toLocaleString(); 7 };
··· 3 }; 4 5 export const formatTimestamp = (timestamp: number): string => { 6 + return new Date(timestamp * 1000).toLocaleString(); 7 };