We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdd8af5 + 162df34 commit 67d4329Copy full SHA for 67d4329
1 file changed
src/pages/blogs/index.tsx
@@ -339,8 +339,9 @@ const BlogCard = ({ blog }: { blog: (typeof blogs)[number] }) => {
339
className="card-author-handle"
340
target="_blank"
341
rel="noopener noreferrer"
342
+ title={author.name}
343
>
- {author.name}
344
+ @{author.id || author.name.toLowerCase().replace(/\s+/g, "")}
345
</Link>
346
</React.Fragment>
347
))}
@@ -360,4 +361,4 @@ const BlogCard = ({ blog }: { blog: (typeof blogs)[number] }) => {
360
361
</div>
362
363
);
-};
364
+};
0 commit comments