Skip to content

Commit f9f93e8

Browse files
committed
Fixed missing import causing reading plan resume
error
1 parent 8a4e0d5 commit f9f93e8

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

modules/settings.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
handleError,
66
showLoading
77
} from '../main.js'
8+
import { getCurrentTranslation } from './navigation.js'
89
import { loadPassage } from './passage.js'
910
import {
1011
deletePDFFromIndexedDB,

modules/state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { handleError } from '../main.js'
22
import { loadPDFFromIndexedDB } from './pdf.js'
3-
export const APP_VERSION = '1.1.02.2025.11.06';
3+
export const APP_VERSION = '1.1.03.2025.11.06';
44
let saveTimeout = null;
55
const SAVE_DEBOUNCE_MS = 500;
66
export const BOOK_ORDER = [

src/modules/settings.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ import {
2020
showLoading
2121
} from '../main.js'
2222

23+
import { getCurrentTranslation } from './navigation.js'
24+
2325
import { loadPassage } from './passage.js'
2426

2527
import {

src/modules/state.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { handleError } from '../main.js'
2020
import { loadPDFFromIndexedDB } from './pdf.js'
2121

2222
/* Global constants */
23-
export const APP_VERSION = '1.1.02.2025.11.06';
23+
export const APP_VERSION = '1.1.03.2025.11.06';
2424
let saveTimeout = null;
2525
const SAVE_DEBOUNCE_MS = 500;
2626

0 commit comments

Comments
 (0)