From 433ae4f996fcb212fa362a9a79f6ac67b75b143c Mon Sep 17 00:00:00 2001 From: Vasilen Kondakov Date: Mon, 23 Mar 2026 13:32:09 +0200 Subject: [PATCH] fix: resolve failing lint and build scripts (#184) - Removed incompatible tailwindcss plugin (Tailwind v4 conflict) and prettier from ESLint config. - Fixed missing display name error in TabsRoot component. - Fixed anonymous default export warning in Disclosure component. - Excluded cli directory from root Next.js tsconfig to prevent next build from crashing on missing CLI dependencies. --- .eslintrc.json | 7 +------ components/website/tabs.tsx | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0a76b3a..957cd15 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,8 +1,3 @@ { - "extends": [ - "next/core-web-vitals", - "prettier", - "plugin:tailwindcss/recommended" - ], - "plugins": ["tailwindcss"] + "extends": ["next/core-web-vitals"] } diff --git a/components/website/tabs.tsx b/components/website/tabs.tsx index c8944fd..672be34 100644 --- a/components/website/tabs.tsx +++ b/components/website/tabs.tsx @@ -13,7 +13,7 @@ const TabsContext = React.createContext(''); const TabsRoot = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef ->(({ ...props }, ref) => { +>(function TabsRoot({ ...props }, ref) { const uniqueId = React.useId(); return (