From c31ebf895681c3fd39089bb32287fe28596c5980 Mon Sep 17 00:00:00 2001 From: MT Lewis Date: Fri, 13 Sep 2024 10:21:15 +0100 Subject: [PATCH 1/2] app-next: add comment explaining why we're unnecessarily doing legacy plugin conversion Signed-off-by: MT Lewis --- packages/app-next/src/App.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/app-next/src/App.tsx b/packages/app-next/src/App.tsx index 0d686cd5a5..22b7974925 100644 --- a/packages/app-next/src/App.tsx +++ b/packages/app-next/src/App.tsx @@ -82,6 +82,11 @@ TODO: /* app.tsx */ +/** + * TechDocs does support the new frontend systme so this conversion is not + * strictly necessary, but it's left here to provide a demo of the utilities for + * converting legacy plugins. + */ const convertedTechdocsPlugin = convertLegacyPlugin(techdocsPlugin, { extensions: [ // TODO: We likely also need a way to convert an entire tree similar to collectLegacyRoutes From 0382b209129fac3afa22570094c6d15000ecc294 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Fri, 13 Sep 2024 12:07:05 +0200 Subject: [PATCH 2/2] Update packages/app-next/src/App.tsx Signed-off-by: Patrik Oldsberg --- packages/app-next/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-next/src/App.tsx b/packages/app-next/src/App.tsx index 22b7974925..079eb9bf27 100644 --- a/packages/app-next/src/App.tsx +++ b/packages/app-next/src/App.tsx @@ -83,7 +83,7 @@ TODO: /* app.tsx */ /** - * TechDocs does support the new frontend systme so this conversion is not + * TechDocs does support the new frontend system so this conversion is not * strictly necessary, but it's left here to provide a demo of the utilities for * converting legacy plugins. */