From 749ccb432dc71bde534c1db634da72fe42135360 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 5 Mar 2026 12:34:33 +0100 Subject: [PATCH] Use plain text instead of @link in deprecation tags The {@link} tags resolve to the local deprecated symbols rather than the new ones in @backstage/plugin-app-react, and TSDoc doesn't support cross-package links. Signed-off-by: Patrik Oldsberg Made-with: Cursor --- .../src/blueprints/AnalyticsImplementationBlueprint.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/frontend-plugin-api/src/blueprints/AnalyticsImplementationBlueprint.ts b/packages/frontend-plugin-api/src/blueprints/AnalyticsImplementationBlueprint.ts index f9ffb67fff..e9961c3d48 100644 --- a/packages/frontend-plugin-api/src/blueprints/AnalyticsImplementationBlueprint.ts +++ b/packages/frontend-plugin-api/src/blueprints/AnalyticsImplementationBlueprint.ts @@ -23,7 +23,7 @@ import { /** * @public - * @deprecated Use {@link AnalyticsImplementationFactory} from `@backstage/plugin-app-react` instead. + * @deprecated Use `AnalyticsImplementationFactory` from `@backstage/plugin-app-react` instead. */ export type AnalyticsImplementationFactory< Deps extends { [name in string]: unknown } = {}, @@ -41,7 +41,7 @@ const factoryDataRef = * Creates analytics implementations. * * @public - * @deprecated Use {@link AnalyticsImplementationBlueprint} from `@backstage/plugin-app-react` instead. + * @deprecated Use `AnalyticsImplementationBlueprint` from `@backstage/plugin-app-react` instead. */ export const AnalyticsImplementationBlueprint = createExtensionBlueprint({ kind: 'analytics',