From 3c5d318fc057a07732d9a8d7c2ca9c55b3d6a7f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20F=C3=A9lix?= Date: Sun, 10 Dec 2023 22:53:10 +0100 Subject: [PATCH] fix: :bug: incorrect path in 18n example app-dir (#839) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Description Fixes #838. Incorrect path in i18n example. Changed to the correct dir. ### Demo URL https://vercel-examples-orpin.vercel.app/en ### Type of Change - [ ] New Example - [x] Example updates (Bug fixes, new features, etc.) - [ ] Other (changes to the codebase, but not to examples) ### New Example Checklist - [ ] 🛫 `npm run new-example` was used to create the example - [ ] 📚 The template wasn't used but I carefuly read the [Adding a new example](https://github.com/vercel/examples#adding-a-new-example) steps and implemented them in the example - [ ] 📱 Is it responsive? Are mobile and tablets considered? --- app-directory/i18n/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-directory/i18n/app/layout.tsx b/app-directory/i18n/app/layout.tsx index cff0d005e..0a3ef1309 100644 --- a/app-directory/i18n/app/layout.tsx +++ b/app-directory/i18n/app/layout.tsx @@ -11,7 +11,7 @@ export default function RootLayout({ children }: { children: ReactNode }) { return ( - {children} + {children} )