Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Thin server page wrapper that awaits params.replayId and passes it to…
… PageClient as initialReplayId
  • Loading branch information
madster456 committed Mar 27, 2026
commit eca5155fc2174996393a2fb3352a8ad11f788667
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import PageClient from "../page-client";

export default async function Page(props: {
params: Promise<{
replayId: string,
}>,
}) {
const params = await props.params;
return <PageClient initialReplayId={params.replayId} />;
}