From 31a9276a6db1d2f8c9239c4a26617bdc4b2865a5 Mon Sep 17 00:00:00 2001 From: Cannon Lock Date: Mon, 18 Dec 2023 09:12:45 -0600 Subject: [PATCH] Fix hardcoded paths --- packages/globe-dev/src/index.ts | 2 +- src/pages/map/map-interface/app-state/reducers/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/globe-dev/src/index.ts b/packages/globe-dev/src/index.ts index 98b2ea54..ad7f4e33 100644 --- a/packages/globe-dev/src/index.ts +++ b/packages/globe-dev/src/index.ts @@ -25,7 +25,7 @@ import Map from "./map-comparison"; import { getMapPositionForHash, applyMapPositionToHash, -} from "/Users/Daven/Projects/Macrostrat/Software/web/src/pages/map/map-interface/app-state/reducers/hash-string"; +} from "../../../src/pages/map/map-interface/app-state/reducers/hash-string"; function VisControl({ show, setShown, name }) { const className = show ? "active" : ""; diff --git a/src/pages/map/map-interface/app-state/reducers/index.ts b/src/pages/map/map-interface/app-state/reducers/index.ts index ccd859da..bd6d1d36 100644 --- a/src/pages/map/map-interface/app-state/reducers/index.ts +++ b/src/pages/map/map-interface/app-state/reducers/index.ts @@ -145,6 +145,7 @@ export default appReducer; export * from "./core"; export * from "./map"; export * from "./types"; +export * from "./hash-string"; /* function overallReducer(state: AppState, action: Action): AppState {