+15
src/components/timeline/post-reply-context.tsx
+15
src/components/timeline/post-reply-context.tsx
···
49
return <div class="mb-0.5 flex text-de text-contrast-muted">Replying to you</div>;
50
}
51
52
+
if (did === post.author.did) {
53
+
return (
54
+
<div class="mb-0.5 flex text-de text-contrast-muted">
55
+
<span class="shrink-0 whitespace-pre">Replying to </span>
56
+
<a
57
+
dir="auto"
58
+
href={`/${did}`}
59
+
class="overflow-hidden text-ellipsis whitespace-nowrap font-semibold hover:underline"
60
+
>
61
+
{/* @once */ post.author.handle.toLowerCase()}
62
+
</a>
63
+
</div>
64
+
);
65
+
}
66
+
67
const profile = createProfileQuery(() => did, {
68
batched: true,
69
staleTime: Infinity,