From c39df6131835f29a963877e579b240bb95174f64 Mon Sep 17 00:00:00 2001 From: Ruan Swanepoel <40282616+ruanswanepoel@users.noreply.github.com> Date: Tue, 14 Jan 2025 22:26:15 +1100 Subject: [PATCH] Fix highlighted code in `docs/dark-mode/next.mdx` --- apps/www/content/docs/dark-mode/next.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/content/docs/dark-mode/next.mdx b/apps/www/content/docs/dark-mode/next.mdx index 741d8494654..a1d996a532e 100644 --- a/apps/www/content/docs/dark-mode/next.mdx +++ b/apps/www/content/docs/dark-mode/next.mdx @@ -35,7 +35,7 @@ export function ThemeProvider({ Add the `ThemeProvider` to your root layout. -```tsx {1,9-11} title="app/layout.tsx" +```tsx {1,9-13,15} title="app/layout.tsx" import { ThemeProvider } from "@/components/theme-provider" export default function RootLayout({ children }: RootLayoutProps) {