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,