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

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