From 864fd4f3e08fa8a75f9bb5c33325e5d6f451ebea Mon Sep 17 00:00:00 2001 From: Colton Padden Date: Tue, 14 Dec 2021 14:11:01 -0500 Subject: [PATCH] release-2021-06-01 packages/core-plugin-api/src/apis/system/ApiRef.ts:27 docs Signed-off-by: Colton Padden --- docs/tutorials/journey.md | 1 - docs/tutorials/using-backstage-proxy-within-plugin.md | 1 - 2 files changed, 2 deletions(-) diff --git a/docs/tutorials/journey.md b/docs/tutorials/journey.md index 249507ddf0..126bb5ae0d 100644 --- a/docs/tutorials/journey.md +++ b/docs/tutorials/journey.md @@ -48,7 +48,6 @@ that implements the `OAuthApi` type, it's now working in the frontend too. ```ts const spotifyAuthApiRef = createApiRef({ id: 'core.auth.spotify', - description: 'Provides authentication towards Spotify APIs', }); ``` diff --git a/docs/tutorials/using-backstage-proxy-within-plugin.md b/docs/tutorials/using-backstage-proxy-within-plugin.md index b0c6bef8ef..771aa7a652 100644 --- a/docs/tutorials/using-backstage-proxy-within-plugin.md +++ b/docs/tutorials/using-backstage-proxy-within-plugin.md @@ -99,7 +99,6 @@ export interface MyAwesomeApi { export const myAwesomeApiRef = createApiRef({ id: 'plugin.my-awesome-api.service', - description: 'Example API definition', }); ```