From 224907840cd36d66cdaa388fce29103114b0f266 Mon Sep 17 00:00:00 2001 From: Vincenzo Scamporlino Date: Wed, 11 Oct 2023 12:01:45 +0200 Subject: [PATCH] user-settings: minor fixes Signed-off-by: Vincenzo Scamporlino --- .changeset/heavy-plants-doubt.md | 2 +- plugins/user-settings/src/alpha.tsx | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.changeset/heavy-plants-doubt.md b/.changeset/heavy-plants-doubt.md index fc2acf74eb..3988a16752 100644 --- a/.changeset/heavy-plants-doubt.md +++ b/.changeset/heavy-plants-doubt.md @@ -2,4 +2,4 @@ '@backstage/plugin-user-settings': patch --- -Added experimental support for declarative integration +Added experimental support for declarative integration via the `/alpha` subpath. diff --git a/plugins/user-settings/src/alpha.tsx b/plugins/user-settings/src/alpha.tsx index 2eb2febfe6..8d68ccf259 100644 --- a/plugins/user-settings/src/alpha.tsx +++ b/plugins/user-settings/src/alpha.tsx @@ -1,11 +1,3 @@ -import { createRouteRef } from '@backstage/core-plugin-api'; -import { - coreExtensionData, - createExtensionInput, - createPageExtension, - createPlugin, -} from '@backstage/frontend-plugin-api'; - /* * Copyright 2023 The Backstage Authors * @@ -21,6 +13,14 @@ import { * See the License for the specific language governing permissions and * limitations under the License. */ +import { createRouteRef } from '@backstage/core-plugin-api'; +import { + coreExtensionData, + createExtensionInput, + createPageExtension, + createPlugin, +} from '@backstage/frontend-plugin-api'; + import React from 'react'; export * from './translation';