fix: correct parameter extraction in EditEventPage function
Some checks failed
container-scan / Container Scan (pull_request) Failing after 1m31s
docker-build / docker (pull_request) Failing after 6m57s

This commit is contained in:
micha 2025-06-20 01:05:36 +02:00
parent 5cc7f3c391
commit 7a7b07ae8e

View file

@ -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>