From 11358a4537a639e6c842481fab28f5c770788563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Mon, 29 Jun 2026 12:05:58 +0000 Subject: [PATCH] docs(readme): fix ThemeProvider import path in Theming example The README Theming code example showed an import using a `@/` path alias (`@/components/theme-provider`), but the project does not configure this alias. The actual source files use relative imports. Changed to `./components/theme-provider` to match the actual project import pattern and ensure the example works when copied verbatim. Note: The `storageKey` value in the same example is addressed separately in PR #194. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 698dd81..72a1883 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,7 @@ Output is generated in the `build/` directory. The application supports light and dark themes with system preference detection: ```tsx -import { ThemeProvider } from '@/components/theme-provider' +import { ThemeProvider } from './components/theme-provider'