tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(client): timestamps are seconds but actually

dusk 86a2eabe 2d367d44

+1 -1
+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 };