Bump version + fix build error
Some checks failed
Build and Publish Docker Image / build (push) Has been cancelled

This commit is contained in:
Richard Roberson 2025-06-22 13:47:23 -06:00
parent ee27330569
commit e6cd1d0264
3 changed files with 790 additions and 548 deletions

1334
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "openreader-webui", "name": "openreader-webui",
"version": "0.3.0-patch.1", "version": "0.3.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev --turbopack -p 3003", "dev": "next dev --turbopack -p 3003",

View file

@ -127,7 +127,7 @@ export const processTextWithMapping = (text: string): {
const rawIndices: number[] = []; const rawIndices: number[] = [];
// Find which raw sentences are contained in this processed sentence // Find which raw sentences are contained in this processed sentence
let remainingText = processedSentence; const remainingText = processedSentence;
while (rawIndex < rawSentences.length && remainingText.length > 0) { while (rawIndex < rawSentences.length && remainingText.length > 0) {
const rawSentence = rawSentences[rawIndex]; const rawSentence = rawSentences[rawIndex];