summaryrefslogtreecommitdiff
path: root/gui/src/components/post/Quote.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'gui/src/components/post/Quote.tsx')
-rw-r--r--gui/src/components/post/Quote.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/src/components/post/Quote.tsx b/gui/src/components/post/Quote.tsx
index 28149f0..98720ea 100644
--- a/gui/src/components/post/Quote.tsx
+++ b/gui/src/components/post/Quote.tsx
@@ -49,12 +49,11 @@ function Quote({
return (
<div onMouseUp={gotoQuote} className="quote-in-post">
<header className="btw">
- (
<div className="quote-author flex">
<Sigil patp={data.author} size={20} />
{data.author}
</div>
- )<span>{date_diff(data.time, "short")}</span>
+ <span>{date_diff(data.time, "short")}</span>
</header>
<Body poast={data} nest={nest} refetch={refetch!} />
</div>