From 3a34fb4cc7eb7368b9e4d0a7b8014d25937eef9e Mon Sep 17 00:00:00 2001 From: benjdlambert Date: Wed, 6 Aug 2025 11:50:20 +0200 Subject: [PATCH] chore: fixing types Signed-off-by: benjdlambert --- packages/frontend-plugin-api/report.api.md | 3 +-- .../frontend-plugin-api/src/apis/definitions/ComponentsApi.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/frontend-plugin-api/report.api.md b/packages/frontend-plugin-api/report.api.md index c9d0ff5542..053c078728 100644 --- a/packages/frontend-plugin-api/report.api.md +++ b/packages/frontend-plugin-api/report.api.md @@ -12,7 +12,6 @@ import { AnyRouteRefParams as AnyRouteRefParams_2 } from '@backstage/frontend-pl import { ApiFactory } from '@backstage/core-plugin-api'; import { ApiHolder } from '@backstage/core-plugin-api'; import { ApiRef } from '@backstage/core-plugin-api'; -import { ApiRef as ApiRef_2 } from '@backstage/core-plugin-api/src/apis/system/types'; import { ApiRefConfig } from '@backstage/core-plugin-api'; import { AppTheme } from '@backstage/core-plugin-api'; import { AppThemeApi } from '@backstage/core-plugin-api'; @@ -430,7 +429,7 @@ export interface ComponentsApi { } // @public -export const componentsApiRef: ApiRef_2; +export const componentsApiRef: ApiRef; export { ConfigApi }; diff --git a/packages/frontend-plugin-api/src/apis/definitions/ComponentsApi.ts b/packages/frontend-plugin-api/src/apis/definitions/ComponentsApi.ts index 0a46e1d018..a36ca8adc6 100644 --- a/packages/frontend-plugin-api/src/apis/definitions/ComponentsApi.ts +++ b/packages/frontend-plugin-api/src/apis/definitions/ComponentsApi.ts @@ -15,7 +15,7 @@ */ import { ComponentRef } from '../../components'; -import { createApiRef } from '../system/ApiRef'; +import { createApiRef } from '@backstage/core-plugin-api'; /** * API for looking up components based on component refs.