Skip to content

Commit 6182546

Browse files
committed
Fix missed letter in aliases and import name.
1 parent cbef1f7 commit 6182546

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
import Prague from "@components/hero-section/prague.astro";
2+
import PragueComponent from "@components/hero-section/prague.astro";
33
import * as venue from "../../data/home/prague.mdx";
44
---
55
<div class="mt-2 px-6 pb-40 overflow-visible">
6-
<Prague title={venue.frontmatter.title}>
6+
<PragueComponent title={venue.frontmatter.title}>
77
<venue.Content />
8-
</Prague>
8+
</PragueComponent>
99
</div>

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"jsxImportSource": "react",
77
"paths": {
88
"@components/*": ["src/components/*"],
9-
"@sections/*": ["src/component/sections/*"],
9+
"@sections/*": ["src/components/sections/*"],
1010
"@ui/*": ["src/components/ui/*"],
1111
"@layouts/*": ["src/layouts/*"],
1212
"@assets/*": ["src/assets/*"],

0 commit comments

Comments
 (0)