a tool for shared writing and social publishing

copy fixes

+6 -13
+5 -12
app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx
··· 180 180 181 181 {tagCount > 0 && ( 182 182 <> 183 - interactionsAvailable && <Separator classname="h-4!" /> 183 + {interactionsAvailable && <Separator classname="h-4!" />} 184 184 <TagPopover tags={tags} tagCount={tagCount} /> 185 185 </> 186 186 )} ··· 272 272 aria-label="Post quotes" 273 273 > 274 274 <QuoteTiny aria-hidden /> {props.quotesCount} 275 - {props.quotesCount > 0 && ( 276 - <> 277 - {props.quotesCount} 278 - <Separator classname="h-4! text-accent-contrast!" /> 279 - </> 280 - )} 281 - Mention 282 - <span 283 - aria-hidden 284 - >{`Mention${props.quotesCount === 1 ? "" : "s"}`}</span> 275 + {props.quotesCount} 276 + <Separator classname="h-4! text-accent-contrast!" /> 277 + Mention{props.quotesCount > 1 ? "" : "s"} 285 278 </ButtonSecondary> 286 279 )} 287 280 {!props.showComments ? null : ( ··· 309 302 <Separator classname="h-4! text-accent-contrast!" /> 310 303 </> 311 304 )} 312 - Comment 305 + Comment{props.commentsCount > 1 ? "" : "s"} 313 306 </ButtonSecondary> 314 307 )} 315 308 </div>
+1 -1
components/RecommendButton.tsx
··· 87 87 x: e.clientX, 88 88 y: e.clientY - 16, 89 89 }, 90 - text: <div className="text-xs">thanks!</div>, 90 + text: <div className="text-xs">recc'd!</div>, 91 91 }); 92 92 } 93 93