diff --git a/packages/frontend-plugin-api/src/schema/createPortableSchema.test.ts b/packages/frontend-plugin-api/src/schema/createPortableSchema.test.ts index 55d5421adb..a763c6e188 100644 --- a/packages/frontend-plugin-api/src/schema/createPortableSchema.test.ts +++ b/packages/frontend-plugin-api/src/schema/createPortableSchema.test.ts @@ -14,7 +14,7 @@ * limitations under the License. */ -import { z as zodV4 } from 'zod'; +import { z as zodV4 } from 'zod/v4'; import { createConfigSchema, mergePortableSchemas, diff --git a/plugins/catalog-graph/README-alpha.md b/plugins/catalog-graph/README-alpha.md index 0408849737..67fcf2b4b4 100644 --- a/plugins/catalog-graph/README-alpha.md +++ b/plugins/catalog-graph/README-alpha.md @@ -289,7 +289,6 @@ import { createFrontendModule, PageBlueprint, } from '@backstage/frontend-plugin-api'; -import { convertLegacyRouteRef } from '@backstage/core-compat-api'; import { catalogGraphRouteRef } from '@backstage/plugin-catalog-graph'; export default createFrontendModule({ @@ -298,7 +297,7 @@ export default createFrontendModule({ PageBlueprint.make({ params: { path: '/catalog-graph', - routeRef: convertLegacyRouteRef(catalogGraphRouteRef), + routeRef: catalogGraphRouteRef, loader: () => import('./components').then(m => ), },