loading quotes
@@ -78,7 +76,7 @@ function QuotesContent(props: { posts: PostView[]; postUri: string }) {
<>
{posts.length !== index + 1 && (
-
+
)}
>
))}
@@ -100,7 +98,7 @@ function QuotePost(props: { post: PostView; quotesUri: string }) {
quoteEnabled
replyEnabled
onEmbedClick={(e) => e.stopPropagation()}
- className="relative py-2 px-2 hover:bg-bg-page rounded cursor-pointer text-sm"
+ className="relative rounded cursor-pointer text-sm"
/>
);
}
diff --git a/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx b/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx
index 6e0079d9..6305dfeb 100644
--- a/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx
+++ b/app/lish/[did]/[publication]/[rkey]/BskyPostContent.tsx
@@ -237,8 +237,8 @@ function PostInfo(props: {
const { displayName, handle, createdAt, compact = false } = props;
return (
-
-
+
+
{displayName}
@@ -255,6 +255,7 @@ function PostInfo(props: {
/>
+
diff --git a/app/lish/[did]/[publication]/[rkey]/Interactions/Comments/index.tsx b/app/lish/[did]/[publication]/[rkey]/Interactions/Comments/index.tsx
index fde12e67..34608196 100644
--- a/app/lish/[did]/[publication]/[rkey]/Interactions/Comments/index.tsx
+++ b/app/lish/[did]/[publication]/[rkey]/Interactions/Comments/index.tsx
@@ -55,8 +55,8 @@ export function CommentsDrawerContent(props: {
id={"commentsDrawer"}
className="flex flex-col gap-2 relative text-sm text-secondary"
>
-
- Comments
+
+
Comments
)}
-
+
{comments
.sort((a, b) => {
let aRecord = a.record as PubLeafletComment.Record;
@@ -119,26 +119,23 @@ const Comment = (props: {
}) => {
const did = props.comment.bsky_profiles?.did;
- let timeAgoDate = timeAgo(props.record.createdAt);
- const formattedDate = useLocalizedDate(props.record.createdAt, {
- year: "numeric",
- month: "long",
- day: "2-digit",
- });
+ let timeAgoDate = timeAgo(props.record.createdAt, { compact: true });
return (