a tool for shared writing and social publishing

properly parse block indexes for quote urls

+2 -2
+2 -2
app/lish/[did]/[publication]/[rkey]/QuoteHandler.tsx
··· 87 87 ); 88 88 let position: QuotePosition = { 89 89 start: { 90 - block: startIndex?.index.split(".").map(parseInt), 90 + block: startIndex?.index.split(".").map((i) => parseInt(i)), 91 91 offset: startOffset, 92 92 }, 93 93 end: { 94 - block: endIndex.index.split(".").map(parseInt), 94 + block: endIndex.index.split(".").map((i) => parseInt(i)), 95 95 offset: endOffset, 96 96 }, 97 97 };