aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/app/data/SpecialPlacesProvider.ts
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-12-19 13:06:27 +0100
committerAriel Costas Guerrero <ariel@costas.dev>2025-12-19 13:06:27 +0100
commit2a9aca302485bc08f5b2dd2a54987de6f80fc338 (patch)
tree38171abad21b2952eca6ff9e8534545b4c28ed12 /src/frontend/app/data/SpecialPlacesProvider.ts
parent37cdb0c418a7f2b47e40ae9db7ad86e1fddc86fe (diff)
Implement loading stops as tiles from OTP
Diffstat (limited to 'src/frontend/app/data/SpecialPlacesProvider.ts')
-rw-r--r--src/frontend/app/data/SpecialPlacesProvider.ts6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/frontend/app/data/SpecialPlacesProvider.ts b/src/frontend/app/data/SpecialPlacesProvider.ts
index 2e3be68..d11b119 100644
--- a/src/frontend/app/data/SpecialPlacesProvider.ts
+++ b/src/frontend/app/data/SpecialPlacesProvider.ts
@@ -1,5 +1,3 @@
-import { REGION_DATA } from "~/config/RegionConfig";
-
export interface SpecialPlace {
name: string;
type: "stop" | "address";
@@ -9,8 +7,8 @@ export interface SpecialPlace {
longitude?: number;
}
-const STORAGE_KEY_HOME = `specialPlace_home_${REGION_DATA.id}`;
-const STORAGE_KEY_WORK = `specialPlace_work_${REGION_DATA.id}`;
+const STORAGE_KEY_HOME = `specialPlace_home`;
+const STORAGE_KEY_WORK = `specialPlace_work`;
function getHome(): SpecialPlace | null {
try {