From 18bb4d94a584d35de7f67bbf0ae11453dc68340b Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Tue, 6 Jun 2023 21:30:03 +0200 Subject: [PATCH] task: Remove unreachable `tailwind-indicator` --- app/layout.tsx | 2 -- components/tailwind-indicator.tsx | 16 ---------------- 2 files changed, 18 deletions(-) delete mode 100644 components/tailwind-indicator.tsx diff --git a/app/layout.tsx b/app/layout.tsx index c0748a9..4f018e2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,7 +1,6 @@ import { Inter } from 'next/font/google'; import LocalFont from "next/font/local"; -import { TailwindIndicator } from "@/components/tailwind-indicator"; import { ThemeProvider } from "@/components/theme-provider"; import "tailwindcss/tailwind.css"; import { ToastProvider } from "../toast-provider"; @@ -72,7 +71,6 @@ export default async function RootLayout({ children }: RootLayoutProps) { {children} - diff --git a/components/tailwind-indicator.tsx b/components/tailwind-indicator.tsx deleted file mode 100644 index 38d20e1..0000000 --- a/components/tailwind-indicator.tsx +++ /dev/null @@ -1,16 +0,0 @@ -export function TailwindIndicator() { - if (process.env.NODE_ENV === "production") { - return null; - } - return null; - return ( -
-
xs
-
sm
-
md
-
lg
-
xl
-
2xl
-
- ); -}