Skip to content

Commit

Permalink
[docs] Fix page.tsx parameter types (#71680)
Browse files Browse the repository at this point in the history
Closes #71679

Co-authored-by: Zack Tanner <1939140+ztanner@users.noreply.github.com>
  • Loading branch information
cantemizyurek and ztanner authored Oct 23, 2024
1 parent 4835be1 commit e1632cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ import { Table } from './table'
export default function Page({
searchParams,
}: {
searchParams: { sort: string }
searchParams: Promise<{ sort: string }>
}) {
return (
<section>
Expand Down

0 comments on commit e1632cc

Please sign in to comment.