-
-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pkg: Update `next` to v15 * pkg: Update demo package --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathaniel Tucker <[email protected]>
- Loading branch information
1 parent
35efaec
commit 92befa1
Showing
7 changed files
with
507 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
import TodoList from '@/components/todo/TodoList'; | ||
|
||
export default function TodoPage({ params }: { params: { userId: number } }) { | ||
return <TodoList {...params} />; | ||
export default async function TodoPage(props: { | ||
params: Promise<{ userId: number }>; | ||
}) { | ||
return <TodoList {...await props.params} />; | ||
} |
Oops, something went wrong.