Skip to content

Commit 3495e2e

Browse files
committed
[RZA-250021]: fixed alias path
1 parent 6d5eb74 commit 3495e2e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components/StateList.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { locations } from "../libs/location";
2+
import { locations } from "@/libs/location";
33
44
const { type = "state" } = Astro.props;
55
const list = type === "state" ? locations.filter((loc) => loc.isState) : locations.filter((loc) => !loc.isState);

src/pages/glossary/sunsign.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import "@/assets/styles/varnmala/index.css";
33
import "@/assets/styles/varnmala/sunsign.css";
44
import BackButton from "@/components/BackButton.astro";
55
import SunSignCard, { type SunSignEntry } from "@/components/SunSignCards.astro";
6+
import glossaryData from "@/data/glossary.json";
67
import BaseLayout from "@/layouts/Base";
7-
import glossaryData from "../../data/glossary.json";
88
99
const pageTitle = glossaryData.sunsign.title;
1010

src/pages/numbers/roman.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import "@/assets/styles/varnmala/greek-alphabet.css";
33
import BackButton from "@/components/BackButton.astro";
44
import LetterCard from "@/components/LetterCard.astro";
5+
import numbersData from "@/data/numbers.json";
56
import BaseLayout from "@/layouts/Base";
6-
import numbersData from "../../data/numbers.json";
77
88
// Define the type for our Roman numeral data entries
99
export interface RomanNumeralEntry {

0 commit comments

Comments
 (0)