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
···
};
export const formatTimestamp = (timestamp: number): string => {
-
return new Date(timestamp).toLocaleString();
+
return new Date(timestamp * 1000).toLocaleString();
};