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