a tool for shared writing and social publishing
0
fork

Configure Feed

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

sort the other way?

+4 -4
+4 -4
app/lish/[did]/[publication]/[rkey]/Interactions/Comments/index.tsx
··· 55 55 let aRecord = a.record as PubLeafletComment.Record; 56 56 let bRecord = b.record as PubLeafletComment.Record; 57 57 return ( 58 - new Date(aRecord.createdAt).getTime() - 59 - new Date(bRecord.createdAt).getTime() 58 + new Date(bRecord.createdAt).getTime() - 59 + new Date(aRecord.createdAt).getTime() 60 60 ); 61 61 }) 62 62 .filter( ··· 135 135 let aRecord = a.record as PubLeafletComment.Record; 136 136 let bRecord = b.record as PubLeafletComment.Record; 137 137 return ( 138 - new Date(aRecord.createdAt).getTime() - 139 - new Date(bRecord.createdAt).getTime() 138 + new Date(bRecord.createdAt).getTime() - 139 + new Date(aRecord.createdAt).getTime() 140 140 ); 141 141 }); 142 142 return (