diff --git a/apps/blog/features/list-of-posts/post-list-item.tsx b/apps/blog/features/list-of-posts/post-list-item.tsx index 38e007a16bed27ed3cb94a1696313fda8ef9998c..c8d06715d363f37154fb27b8c4696b4353b52145 100644 --- a/apps/blog/features/list-of-posts/post-list-item.tsx +++ b/apps/blog/features/list-of-posts/post-list-item.tsx @@ -65,6 +65,7 @@ const PostListItem = ({ {post.author} {' '} @@ -72,6 +73,7 @@ const PostListItem = ({ @{post.original_entry.author}/{post.original_entry.permlink} @@ -86,6 +88,7 @@ const PostListItem = ({ href={`/@${post.reblogged_by[0]}`} className="cursor-pointer hover:text-destructive" data-testid="reblogged-author-link" + prefetch={false} > {post.reblogged_by[0]} {' '} @@ -96,7 +99,7 @@ const PostListItem = ({
{nsfw === 'show' && post.blacklists.length < 1 ? ( - +
{post.author} {' '} @@ -157,6 +161,7 @@ const PostListItem = ({ href={`/${post.category}/@${post.author}/${post.permlink}`} className="hover:cursor-pointer hover:text-destructive" data-testid="post-card-timestamp" + prefetch={false} > @@ -165,7 +170,7 @@ const PostListItem = ({ - + @@ -181,6 +186,7 @@ const PostListItem = ({ {t('cards.badges.pinned')} diff --git a/apps/blog/features/list-of-posts/summary.tsx b/apps/blog/features/list-of-posts/summary.tsx index 12ba415e2d899296b0c803433d97729452b7460d..b7fbef06ff6f55d25d8732d885de9a97197138f9 100644 --- a/apps/blog/features/list-of-posts/summary.tsx +++ b/apps/blog/features/list-of-posts/summary.tsx @@ -39,12 +39,13 @@ const PostSummary = ({ {post.title} - + {userFromDMCA ? t('cards.content_removed') : legalBlockedUser diff --git a/apps/blog/features/post-rendering/user-info.tsx b/apps/blog/features/post-rendering/user-info.tsx index 47ad5fcd29a86f7f95c4a80954a93736c53b3ee4..a32d4118514da6b9fa5d04291a211612b3648653 100644 --- a/apps/blog/features/post-rendering/user-info.tsx +++ b/apps/blog/features/post-rendering/user-info.tsx @@ -92,7 +92,7 @@ function UserInfo({ {authored ? ( Authored by{' '} - + @{authored} diff --git a/apps/blog/features/suggestions-posts/card.tsx b/apps/blog/features/suggestions-posts/card.tsx index e4758d44a7ada3300742bf1c4d523ac60bced33d..8eb06df461e6ecd5081610d72ec86ef1315ff00e 100644 --- a/apps/blog/features/suggestions-posts/card.tsx +++ b/apps/blog/features/suggestions-posts/card.tsx @@ -14,7 +14,7 @@ const SuggestionsCard = ({ entry }: { entry: Entry }) => { const [image, setImage] = useState(cardImage); return (
- + <> {image ? (
@@ -38,7 +38,7 @@ const SuggestionsCard = ({ entry }: { entry: Entry }) => {

{truncateTitle(entry.title)}

- {entry.author} + {entry.author}