Skip to content

Commit

Permalink
Fix page.tsx parameter types
Browse files Browse the repository at this point in the history
  • Loading branch information
cantemizyurek authored Oct 23, 2024
1 parent 96d6a96 commit 93c4e5a
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 93c4e5a

Please sign in to comment.