diff --git a/app/[[...path]]/page.tsx b/app/[[...path]]/page.tsx index fad7e452fa751d..e9fce443599838 100644 --- a/app/[[...path]]/page.tsx +++ b/app/[[...path]]/page.tsx @@ -47,7 +47,12 @@ export const dynamic = 'force-static'; const mdxComponentsWithWrapper = mdxComponents( {Include, PlatformContent}, ({children, frontMatter, nextPage, previousPage}) => ( - + {children} ) diff --git a/docs/platforms/apple/common/user-feedback/configuration/index.mdx b/docs/platforms/apple/common/user-feedback/configuration/index.mdx index b0e88639b2c6e1..9fe5d3a387a4fe 100644 --- a/docs/platforms/apple/common/user-feedback/configuration/index.mdx +++ b/docs/platforms/apple/common/user-feedback/configuration/index.mdx @@ -2,6 +2,7 @@ title: Configure User Feedback sidebar_order: 6900 description: "Learn about general User Feedback configuration fields." +fullWidth: true --- diff --git a/src/types/frontmatter.ts b/src/types/frontmatter.ts index 00a88ef2cdf983..71f100f789a2f5 100644 --- a/src/types/frontmatter.ts +++ b/src/types/frontmatter.ts @@ -89,4 +89,8 @@ export interface FrontMatter { * @example ['v7.119.0', 'next'] */ versions?: string[]; + /** + * Set this to true to take all the available width for the page content. + */ + fullWidth?: boolean; }