diff --git a/docs/features/techdocs/how-to-guides.md b/docs/features/techdocs/how-to-guides.md index cfca7c6a7f..cce6dcfd2e 100644 --- a/docs/features/techdocs/how-to-guides.md +++ b/docs/features/techdocs/how-to-guides.md @@ -139,21 +139,25 @@ import { TechDocsCustomHome } from '@backstage/plugin-techdocs'; const techDocsTabsConfig = [ { - label: "Recommended Documentation", + label: 'Recommended Documentation', panels: [ { title: 'Golden Path', description: 'Documentation about standards to follow', panelType: 'DocsCardGrid', - filterPredicate: entity => entity?.metadata?.tags?.includes('recommended') ?? false, - } - ] - } -] + filterPredicate: entity => + entity?.metadata?.tags?.includes('recommended') ?? false, + }, + ], + }, +]; const AppRoutes = () => { - }> + } + /> ; }; ```