Include locale on all links and routers

This commit is contained in:
Takeshi Kimata
2024-05-04 12:19:53 +09:00
parent ec9e2da7bc
commit 747d191412
20 changed files with 104 additions and 61 deletions

View File

@@ -1,9 +1,13 @@
import RunsPage from "./RunsPage";
export default function Page({ params }: { params: { projectId: string } }) {
export default function Page({
params,
}: {
params: { projectId: string; locale: string };
}) {
return (
<>
<RunsPage projectId={params.projectId} />
<RunsPage projectId={params.projectId} locale={params.locale} />
</>
);
}