From 5bdbcbf7cc9c71896032b48222c51f79059d9d38 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Mon, 19 Jan 2026 08:02:39 +0100 Subject: [PATCH] [dyad] Fixing a build error - wrote 1 file(s) --- src/components/theme-provider.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/theme-provider.tsx b/src/components/theme-provider.tsx index 4203e6a..dafbfe3 100644 --- a/src/components/theme-provider.tsx +++ b/src/components/theme-provider.tsx @@ -1,8 +1,7 @@ "use client" import * as React from "react" -import { ThemeProvider as NextThemesProvider } from "next-themes" -import { type ThemeProviderProps } from "next-themes/dist/types" +import { ThemeProvider as NextThemesProvider, type ThemeProviderProps } from "next-themes" export function ThemeProvider({ children, ...props }: ThemeProviderProps) { return {children}