From 22a02305ce479bccb895e970cd6e3bae0d2a6d87 Mon Sep 17 00:00:00 2001 From: Brendan Schlagel Date: Tue, 23 Sep 2025 14:09:44 -0400 Subject: [PATCH] whoops fix syntax --- .../[rkey]/Interactions/Interactions.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx b/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx index 75797e34..0f4d4a67 100644 --- a/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx +++ b/app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx @@ -132,8 +132,11 @@ export const Interactions = (props: { > Post quotes {props.quotesCount}{" "} - {!props.compact && - `Quote${props.quotesCount === 1 ? "" : "s"}`} + {!props.compact && ( + {`Quote${props.quotesCount === 1 ? "" : "s"}`} + )} {props.showComments === false ? null : ( )} -- 2.51.2