diff --git a/plugins/techdocs/src/Router.tsx b/plugins/techdocs/src/Router.tsx index 1908e6cad0..0174e3457f 100644 --- a/plugins/techdocs/src/Router.tsx +++ b/plugins/techdocs/src/Router.tsx @@ -18,7 +18,6 @@ import React, { PropsWithChildren } from 'react'; import { Route, Routes } from 'react-router-dom'; import { Entity } from '@backstage/catalog-model'; -import { FlatRoutes } from '@backstage/core-app-api'; import { useEntity } from '@backstage/plugin-catalog-react'; import { MissingAnnotationEmptyState } from '@backstage/core-components'; @@ -69,10 +68,8 @@ export const EmbeddedDocsRouter = (props: PropsWithChildren<{}>) => { } return ( - - }> - {children} - - + + }>{children} + ); };