fix: correct parameter extraction in EditEventPage function
This commit is contained in:
parent
911ec29234
commit
b464e6b511
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ interface EditEventPageProps {
|
|||
}
|
||||
|
||||
export default async function EditEventPage({ params }: EditEventPageProps) {
|
||||
const { eventID } = await params;
|
||||
const { eventID } = params;
|
||||
return (
|
||||
<div className='flex flex-col items-center justify-center h-screen'>
|
||||
<div className='absolute top-4 right-4'>{<ThemePicker />}</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue