tracks lexicons and how many times they appeared on the jetstream

fix(client): timestamps are seconds now so show that properly, also disable numberflow its bad

ptr.pet 2d367d44 9036e3a9

verified
Changed files
+2 -3
client
src
lib
+1 -2
client/src/lib/components/StatsCard.svelte
··· 1 1 <script lang="ts"> 2 2 import { formatNumber } from "$lib/format"; 3 - import NumberFlow from "@number-flow/svelte"; 4 3 5 4 const colorClasses = { 6 5 green: { ··· 45 44 {title} 46 45 </h3> 47 46 <p class="text-xl md:text-2xl font-bold {colors.valueText}"> 48 - <NumberFlow {value} /> 47 + {formatNumber(value)} 49 48 </p> 50 49 </div>
+1 -1
client/src/lib/format.ts
··· 3 3 }; 4 4 5 5 export const formatTimestamp = (timestamp: number): string => { 6 - return new Date(timestamp / 1000).toLocaleString(); 6 + return new Date(timestamp).toLocaleString(); 7 7 };