We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4329d9b commit 8af0a9eCopy full SHA for 8af0a9e
1 file changed
src/components/CommentItem.tsx
@@ -126,7 +126,7 @@ export default function CommentItem({
126
const replyWebsite = getValidUrl(reply.guest_website);
127
const replyToName = reply.parent_id ? nameMap.get(reply.parent_id) || "匿名" : null;
128
129
- const replyAvatarElement = <Avatar email={replyEmail} name={replyAuthorName} size={32} />;
+ const replyAvatarElement = <Avatar email={replyEmail} name={replyAuthorName} size={36} />;
130
const replyNameElement = (
131
<span
132
className={`font-medium ${replyWebsite ? "text-neutral-800 hover:text-blue-600 hover:underline" : "text-neutral-800"}`}
0 commit comments