tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
29
pulls
pipelines
fix plural in interactions drawer
awarm.space
7 months ago
30ad328d
33f7e3a6
+2
-1
1 changed file
expand all
collapse all
unified
split
app
lish
[did]
[publication]
[rkey]
Interactions
Interactions.tsx
+2
-1
app/lish/[did]/[publication]/[rkey]/Interactions/Interactions.tsx
···
45
45
else useInteractionState.setState({ drawerOpen: false });
46
46
}}
47
47
>
48
48
-
<QuoteTiny /> {props.quotes.length} {!props.compact && "Quotes"}
48
48
+
<QuoteTiny /> {props.quotes.length}{" "}
49
49
+
{!props.compact && `Quote${props.quotes.length > 1 ? "s" : ""}`}
49
50
</button>
50
51
</div>
51
52
);