From 35cf6f03f050cf4102496054a933fa2006a6ec66 Mon Sep 17 00:00:00 2001 From: Nikhil Singh Date: Sun, 17 Nov 2024 21:09:45 -0500 Subject: [PATCH] Fix Build Issue --- context/theme-provider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/context/theme-provider.tsx b/context/theme-provider.tsx index b0ff266..984415a 100644 --- a/context/theme-provider.tsx +++ b/context/theme-provider.tsx @@ -2,7 +2,7 @@ import * as React from "react"; import { ThemeProvider as NextThemesProvider } from "next-themes"; -import { type ThemeProviderProps } from "next-themes/dist/types"; +import { type ThemeProviderProps } from "next-themes"; export function ThemeProvider({ children, ...props }: ThemeProviderProps) { return {children};