diff --git a/app/[slug]/layout.tsx b/app/[slug]/layout.tsx index 5348788..0cb396b 100644 --- a/app/[slug]/layout.tsx +++ b/app/[slug]/layout.tsx @@ -12,12 +12,6 @@ export default function RootLayout({ children, }: { children: React.ReactNode; - params: { slug: string }; - searchParams: { event?: string; iykRef?: string }; }) { - return ( - // -
{children}
- // - ); + return <>{children}; } diff --git a/postcss.config.js b/postcss.config.js index 3522657..18069c4 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,8 +1,4 @@ // eslint-disable-next-line unicorn/no-empty-file module.exports = { - plugins: { - 'postcss-nested': {}, - tailwindcss: {}, - autoprefixer: {}, - }, + plugins: ['postcss-nested', 'tailwindcss', 'autoprefixer'], };