Fix import paths in Ledger.jsx after move to screens/

This commit is contained in:
otivm
2026-04-25 17:29:25 +00:00
parent 69b5f42ad6
commit 36f332b2b4

View File

@@ -1,5 +1,5 @@
import { useState, useEffect, useRef } from 'react'
import { ROUTES, WAYPOINTS, OTIUM_DURATION_MS } from './constants.js'
import { ROUTES, WAYPOINTS, OTIUM_DURATION_MS } from '../constants.js'
import {
applyDispatch,
applyDispatchCost,
@@ -8,7 +8,7 @@ import {
getSeenJournalEntries,
isRouteUnlocked,
getChapter,
} from './gameState.js'
} from '../gameState.js'
const CHAPTERS = ['ostia', 'capua', 'brundisium', 'carthago', 'alexandria']