a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

whoops fix syntax

+10 -4
+10 -4
app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx
··· 132 132 > 133 133 <span className="sr-only">Post quotes</span> 134 134 <QuoteTiny aria-hidden /> {props.quotesCount}{" "} 135 - {!props.compact && 136 - `<span aria-hidden>Quote${props.quotesCount === 1 ? "" : "s"}</span>`} 135 + {!props.compact && ( 136 + <span 137 + aria-hidden 138 + >{`Quote${props.quotesCount === 1 ? "" : "s"}`}</span> 139 + )} 137 140 </button> 138 141 {props.showComments === false ? null : ( 139 142 <button ··· 146 149 > 147 150 <span className="sr-only">Post comments</span> 148 151 <CommentTiny aria-hidden /> {props.commentsCount}{" "} 149 - {!props.compact && 150 - `<span aria-hidden>Comment${props.commentsCount === 1 ? "" : "s"}</span>`} 152 + {!props.compact && ( 153 + <span 154 + aria-hidden 155 + >{`Comment${props.commentsCount === 1 ? "" : "s"}`}</span> 156 + )} 151 157 </button> 152 158 )} 153 159 </div>