a tool for shared writing and social publishing

fix highlighting logic

+2 -1
+2 -1
app/lish/[did]/[publication]/[rkey]/useHighlight.tsx
··· 50 50 !expandedPos.reduce( 51 51 (acc, i, index) => 52 52 acc && 53 - i >= quotePosition?.start.block[index] && 53 + ((i === -1 && quotePosition?.start.block[index] === undefined) || 54 + i >= (quotePosition?.start.block[index] ?? -1)) && 54 55 i <= quotePosition.end.block[index], 55 56 true, 56 57 )