Bump version + fix build error
Some checks failed
Build and Publish Docker Image / build (push) Has been cancelled
Some checks failed
Build and Publish Docker Image / build (push) Has been cancelled
This commit is contained in:
parent
ee27330569
commit
e6cd1d0264
3 changed files with 790 additions and 548 deletions
1334
package-lock.json
generated
1334
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "openreader-webui",
|
||||
"version": "0.3.0-patch.1",
|
||||
"version": "0.3.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev --turbopack -p 3003",
|
||||
|
|
|
|||
|
|
@ -127,7 +127,7 @@ export const processTextWithMapping = (text: string): {
|
|||
const rawIndices: number[] = [];
|
||||
|
||||
// Find which raw sentences are contained in this processed sentence
|
||||
let remainingText = processedSentence;
|
||||
const remainingText = processedSentence;
|
||||
|
||||
while (rawIndex < rawSentences.length && remainingText.length > 0) {
|
||||
const rawSentence = rawSentences[rawIndex];
|
||||
|
|
|
|||
Loading…
Reference in a new issue