From 4b43482f9e41dccaf6652503c8d036c25509d2c0 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Thu, 12 Feb 2026 13:52:18 +0100 Subject: [PATCH] app-visualizer: cleanup testing code Signed-off-by: Patrik Oldsberg --- plugins/app-visualizer/src/plugin.tsx | 37 --------------------------- 1 file changed, 37 deletions(-) diff --git a/plugins/app-visualizer/src/plugin.tsx b/plugins/app-visualizer/src/plugin.tsx index 205a1ad968..e5c7db9287 100644 --- a/plugins/app-visualizer/src/plugin.tsx +++ b/plugins/app-visualizer/src/plugin.tsx @@ -31,45 +31,9 @@ const appVisualizerPage = PageBlueprint.make({ path: '/visualizer', routeRef: rootRouteRef, title: 'Visualizer', - // loader: async () =>
The root page
, }, }); -const appVisualizerPage2 = PageBlueprint.make({ - name: '2', - params: { - path: '/visualizer/something-else', - routeRef: createRouteRef(), - title: 'something else', - loader: async () =>
The root sdsd
, - }, -}); -/* -// inputs: -// pages: [explicitly subrouteref as a data type + element + path] -const rootPage = TabbedPageBlueprint.make({ - params: { - path: '/visualizer', - routeRef: rootRouteRef, - actions: [ - ] - subpages: [ - - ] - } -}) - -const treePageThing = PluginContentTopBarNavigableContentBlueprint.make({ - attachTo: { - - } - params: { - routeRef: treeSubRouteRef, - loader: () => null, - } -}) - */ - const treeRouteRef = createRouteRef(); const detailedRouteRef = createRouteRef(); const textRouteRef = createRouteRef(); @@ -138,7 +102,6 @@ export const visualizerPlugin = createFrontendPlugin({ info: { packageJson: () => import('../package.json') }, extensions: [ appVisualizerPage, - appVisualizerPage2, appVisualizerTreePage, appVisualizerDetailedPage, appVisualizerTextPage,