tracks lexicons and how many times they appeared on the jetstream

fix(client): timestamps are seconds but actually

ptr.pet 86a2eabe 2d367d44

verified
Changed files
+1 -1
client
src
lib
+1 -1
client/src/lib/format.ts
··· 3 3 }; 4 4 5 5 export const formatTimestamp = (timestamp: number): string => { 6 - return new Date(timestamp).toLocaleString(); 6 + return new Date(timestamp * 1000).toLocaleString(); 7 7 };