diff --git a/examples/nextjs/pages/[doctype]/[...docid].tsx b/examples/nextjs/pages/[doctype]/[...docid].tsx index ce2f61860..0d604140c 100644 --- a/examples/nextjs/pages/[doctype]/[...docid].tsx +++ b/examples/nextjs/pages/[doctype]/[...docid].tsx @@ -22,9 +22,10 @@ const DocPageTemplate: FC = ({ storyId, type, category, + activeTab, }) => { return ( - + ); diff --git a/examples/starter/pages/[doctype]/[...docid].tsx b/examples/starter/pages/[doctype]/[...docid].tsx index ce2f61860..0d604140c 100644 --- a/examples/starter/pages/[doctype]/[...docid].tsx +++ b/examples/starter/pages/[doctype]/[...docid].tsx @@ -22,9 +22,10 @@ const DocPageTemplate: FC = ({ storyId, type, category, + activeTab, }) => { return ( - + ); diff --git a/examples/stories/src/tutorial/getting-started/ssg/nextjs.mdx b/examples/stories/src/tutorial/getting-started/ssg/nextjs.mdx index 1b84352cd..0670e6d79 100644 --- a/examples/stories/src/tutorial/getting-started/ssg/nextjs.mdx +++ b/examples/stories/src/tutorial/getting-started/ssg/nextjs.mdx @@ -301,9 +301,10 @@ const DocPageTemplate: FC = ({ storyId, type, category, + activeTab, }) => { return ( - + );