diff --git a/docs/en-US/next/guides/ssg.mdx b/docs/en-US/next/guides/ssg.mdx index 01fc9e6e..0b5437d6 100644 --- a/docs/en-US/next/guides/ssg.mdx +++ b/docs/en-US/next/guides/ssg.mdx @@ -163,7 +163,7 @@ This error typically occurs when you have a `layout.tsx`, `page.tsx`, etc. file To fix this issue, make sure that all of your route segment files (so typically `layout.tsx` and `page.tsx`) are descendants of the `/[locale]` directory. - During SSG, the only way to resolve a user's locale is via the URL path. + **Note:** During SSG, the only way to resolve a user's locale is via the URL path. So, if we try to execute a `layout.tsx` file outside of the `/[locale]` directory, it will error because it does not have access to this root param. The unintuitive part about this is that when a page renders, so does every `layout.tsx` file wrapping it. So, you could have added SSG to a `page.tsx` file that is very much inside of the `/[locale]` directory, but there is actually a `layout.tsx` file somewhere else responsible for the error. diff --git a/docs/en-US/react-core-linter/guides/quickstart.mdx b/docs/en-US/react-core-linter/guides/quickstart.mdx index a3f31b96..925d8814 100644 --- a/docs/en-US/react-core-linter/guides/quickstart.mdx +++ b/docs/en-US/react-core-linter/guides/quickstart.mdx @@ -4,7 +4,7 @@ description: Quickstart guide for the React Core Linter --- - This package is v0.1.0 and not stable. Subject to breaking changes. + **Experimental:** This package is v0.1.0 and not stable. Subject to breaking changes. This is an ESLint plugin designed to be used with any of our i18n libraries, `gt-react`, `gt-next`, or `gt-react-native`. diff --git a/docs/en-US/react-core-linter/index.mdx b/docs/en-US/react-core-linter/index.mdx index e7048410..da78d5ea 100644 --- a/docs/en-US/react-core-linter/index.mdx +++ b/docs/en-US/react-core-linter/index.mdx @@ -4,7 +4,7 @@ description: ESLint plugin for GT React libraries --- - This package is v0.1.0 and not stable. Subject to breaking changes. + **Experimental:** This package is v0.1.0 and not stable. Subject to breaking changes. `@generaltranslation/react-core-linter` is an ESLint plugin that catches common implementation errors across GT's React libraries: `gt-react`, `gt-next`, and `gt-react-native`.