a tool for shared writing and social publishing

fix plural in interactions drawer

+2 -1
+2 -1
app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx
··· 45 45 else useInteractionState.setState({ drawerOpen: false }); 46 46 }} 47 47 > 48 - <QuoteTiny /> {props.quotes.length} {!props.compact && "Quotes"} 48 + <QuoteTiny /> {props.quotes.length}{" "} 49 + {!props.compact && `Quote${props.quotes.length > 1 ? "s" : ""}`} 49 50 </button> 50 51 </div> 51 52 );