Skip to content

Commit a8900a4

Browse files
committed
fix: update PROTOCOL_GROUPS to include 'app' and 'apps' types in app-sidebar
1 parent 21a1ad0 commit a8900a4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

apps/studio/src/components/app-sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ interface ProtocolGroup {
120120

121121
const PROTOCOL_GROUPS: ProtocolGroup[] = [
122122
{ key: 'data', label: 'Data', icon: Database, types: ['object', 'objects', 'hooks', 'mappings', 'analyticsCubes', 'data'] },
123-
{ key: 'ui', label: 'UI', icon: AppWindow, types: ['actions', 'views', 'pages', 'dashboards', 'reports', 'themes'] },
123+
{ key: 'ui', label: 'UI', icon: AppWindow, types: ['app', 'apps', 'actions', 'views', 'pages', 'dashboards', 'reports', 'themes'] },
124124
{ key: 'automation', label: 'Automation', icon: Workflow, types: ['flows', 'workflows', 'approvals', 'webhooks'] },
125125
{ key: 'security', label: 'Security', icon: Shield, types: ['roles', 'permissions', 'profiles', 'sharingRules', 'policies'] },
126126
{ key: 'ai', label: 'AI', icon: Bot, types: ['agents', 'ragPipelines'] },

packages/plugins/plugin-setup/src/setup-plugin.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ export class SetupPlugin implements Plugin {
8282
name: 'Setup',
8383
version: '1.0.0',
8484
type: 'plugin',
85-
namespace: 'sys',
8685
objects: [],
8786
apps: [setupApp],
8887
});

0 commit comments

Comments
 (0)