From 6571fa7f95bd1583faffdfff235c9e68345aa84a Mon Sep 17 00:00:00 2001 From: Lucemans Date: Mon, 30 Oct 2023 08:39:20 +0000 Subject: [PATCH] Bump --- app/[slug]/layout.tsx | 8 +------- postcss.config.js | 6 +----- 2 files changed, 2 insertions(+), 12 deletions(-) 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'], };