diff --git a/packages/frontend-plugin-api/src/blueprints/SubPageBlueprint.tsx b/packages/frontend-plugin-api/src/blueprints/SubPageBlueprint.tsx index d174a3a1ec..c97d279839 100644 --- a/packages/frontend-plugin-api/src/blueprints/SubPageBlueprint.tsx +++ b/packages/frontend-plugin-api/src/blueprints/SubPageBlueprint.tsx @@ -32,7 +32,7 @@ import { ExtensionBoundary } from '../components'; * attachTo: { id: 'page:my-plugin', input: 'pages' }, * name: 'overview', * params: { - * path: '/overview', + * path: 'overview', * title: 'Overview', * routeRef: overviewRouteRef, * loader: () => import('./components/Overview').then(m => ), @@ -59,9 +59,9 @@ export const SubPageBlueprint = createExtensionBlueprint({ *factory( params: { /** - * The path for this sub-page, relative to the parent page. - * Should start with '/'. - * @example '/overview', '/settings', '/details' + * The path for this sub-page, relative to the parent page. Must **not** start with '/'. + * + * @example 'overview', 'settings', 'details' */ path: string; /**