aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/theme-provider.tsx
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <[email protected]> 2025-05-29 02:48:14 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <[email protected]> 2025-05-29 02:48:14 +0530
commit58839566bc60d370a66c35bd7e1112ccefed6795 (patch)
tree52fe45757e92a8440eaad0486359068570449f8f /frontend/src/components/theme-provider.tsx
parent1cf89bacba59c1edbc5a65d3f6e3ea2b575b89c4 (diff)
downloadblcklst-58839566bc60d370a66c35bd7e1112ccefed6795.tar.gz
blcklst-58839566bc60d370a66c35bd7e1112ccefed6795.tar.bz2
blcklst-58839566bc60d370a66c35bd7e1112ccefed6795.zip
fix: updated the type check error
Diffstat (limited to 'frontend/src/components/theme-provider.tsx')
-rw-r--r--frontend/src/components/theme-provider.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/theme-provider.tsx b/frontend/src/components/theme-provider.tsx
index 220a1f8..ab9d9da 100644
--- a/frontend/src/components/theme-provider.tsx
+++ b/frontend/src/components/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 <NextThemesProvider {...props}>{children}</NextThemesProvider>