Skip to content

Commit b7476a3

Browse files
committed
chore: 未使用変数を削除
1 parent 7921f44 commit b7476a3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

2025/src/pages/[lang]/index.astro

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@ import Staff from "../../components/Staff.astro";
77
import Top from "../../components/Top.astro";
88
import Venue from "../../components/Venue.astro";
99
import "../../styles/global.css";
10-
import { LANGUAGES, useTranslate } from "@/i18n";
10+
import { LANGUAGES } from "@/i18n";
1111
1212
import Layout from "@/layouts/Layout.astro";
1313
1414
export function getStaticPaths() {
1515
return LANGUAGES.map((lang) => ({ params: { lang } }));
1616
}
17-
18-
const { lang } = Astro.params;
19-
const t = useTranslate(lang);
2017
---
2118

2219
<Layout>

0 commit comments

Comments
 (0)