Skip to content

Commit 1f63477

Browse files
committed
fix(pr): remove doi page in order to actually build the page
1 parent abc787d commit 1f63477

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

apps/peer-review/app/doi/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const getSubmissionByDoi = async (doi: string) => {
88
return res.json() as Promise<SubmissionItem>
99
}
1010

11-
export default async function Page(props: { params: { doi: string } }) {
11+
async function ActualPage(props: { params: { doi: string } }) {
1212
const {
1313
params: { doi },
1414
} = props
@@ -20,3 +20,7 @@ export default async function Page(props: { params: { doi: string } }) {
2020
// @ts-expect-error
2121
return <PRPage params={{ pr: submission.id }} />
2222
}
23+
24+
export default async function Page() {
25+
return <div>Test</div>
26+
}

0 commit comments

Comments
 (0)