a tool for shared writing and social publishing

oops fix showing quotes on interaction preview

+2 -2
+2 -2
components/InteractionsPreview.tsx
··· 38 </> 39 )} 40 41 - {props.showMentions || props.quotesCount === 0 ? null : ( 42 <SpeedyLink 43 aria-label="Post quotes" 44 href={`${props.postUrl}?interactionDrawer=quotes`} ··· 47 <QuoteTiny /> {props.quotesCount} 48 </SpeedyLink> 49 )} 50 - {props.showComments === false || props.commentsCount === 0 ? null : ( 51 <SpeedyLink 52 aria-label="Post comments" 53 href={`${props.postUrl}?interactionDrawer=comments`}
··· 38 </> 39 )} 40 41 + {!props.showMentions || props.quotesCount === 0 ? null : ( 42 <SpeedyLink 43 aria-label="Post quotes" 44 href={`${props.postUrl}?interactionDrawer=quotes`} ··· 47 <QuoteTiny /> {props.quotesCount} 48 </SpeedyLink> 49 )} 50 + {!props.showComments || props.commentsCount === 0 ? null : ( 51 <SpeedyLink 52 aria-label="Post comments" 53 href={`${props.postUrl}?interactionDrawer=comments`}