From 36f332b2b4a6138f78c287e88e89af9b3aba6b64 Mon Sep 17 00:00:00 2001 From: otivm Date: Sat, 25 Apr 2026 17:29:25 +0000 Subject: [PATCH] Fix import paths in Ledger.jsx after move to screens/ --- src/screens/Ledger.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/Ledger.jsx b/src/screens/Ledger.jsx index baa1706..79e41ec 100644 --- a/src/screens/Ledger.jsx +++ b/src/screens/Ledger.jsx @@ -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']