From 51e99fcde2ba09a9b66f6ac5328757b88b7c0f56 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2026 19:28:44 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Remove=20unused=20type=20import?= =?UTF-8?q?=20'ThemeProviderProps'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: projectedanx <238904666+projectedanx@users.noreply.github.com> --- app/components/theme-provider.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/components/theme-provider.tsx b/app/components/theme-provider.tsx index 8c90fbc..86994b0 100755 --- a/app/components/theme-provider.tsx +++ b/app/components/theme-provider.tsx @@ -2,8 +2,7 @@ import * as React from "react" import { ThemeProvider as NextThemesProvider } from "next-themes" -import { type ThemeProviderProps } from "next-themes/dist/types" -export function ThemeProvider({ children, ...props }: ThemeProviderProps) { +export function ThemeProvider({ children, ...props }: React.ComponentProps) { return {children} }