a tool for shared writing and social publishing

revert some stuff in pub listing

+7 -7
+7 -7
app/(home-pages)/discover/PubListing.tsx
··· 14 14 export const PubListing = ( 15 15 props: PublicationSubscription & { 16 16 resizeHeight?: boolean; 17 - subscribe?: boolean; 18 17 }, 19 18 ) => { 20 19 let record = props.record as PubLeafletPublication.Record; ··· 62 61 <div className="flex flex-row gap-2 items-center"> 63 62 {props.authorProfile?.handle} 64 63 </div> 65 - <SubscribeWithBluesky 66 - pubName={record.name} 67 - pub_uri={props.uri} 68 - base_url={record.base_path ? record.base_path : ""} 69 - subscribers={[]} 70 - /> 64 + <p> 65 + Updated{" "} 66 + {timeAgo( 67 + props.documents_in_publications?.[0]?.documents?.indexed_at || 68 + "", 69 + )} 70 + </p> 71 71 </div> 72 72 </div> 73 73 </a>