diff --git a/frontend/src/services/toolRegistry.ts b/frontend/src/services/toolRegistry.ts index 05706a4..231f286 100644 --- a/frontend/src/services/toolRegistry.ts +++ b/frontend/src/services/toolRegistry.ts @@ -33,7 +33,7 @@ import { setRouter } from './tools/handlers/globalHandlers' import { setGiteaCredentials, clearGiteaCredentials } from './tools/handlers/sourceCodeHandlers' import { ALL_TOOL_METAS, getAllToolNames, type ToolCategory } from './tools/toolDefinitions' -export type PageName = 'home' | 'canvas' | 'components' | 'themes' | 'project-canvas' | 'database' | 'source' | 'terminal' | 'tools' | 'git' | 'agents' +export type PageName = 'home' | 'canvas' | 'components' | 'themes' | 'project-canvas' | 'database' | 'source' | 'terminal' | 'tools' | 'git' | 'agents' | 'transcript-debug' // Internal webmcp functions (not exported for external use) let webmcpInstance: any = null @@ -172,7 +172,8 @@ const pageCategories: Record = { terminal: ['global', 'torch', 'terminal'], tools: ['global', 'torch', 'terminal'], git: ['global', 'torch', 'git', 'terminal'], - agents: ['global', 'torch', 'terminal'] + agents: ['global', 'torch', 'terminal'], + 'transcript-debug': ['global', 'torch', 'terminal'] } let currentPage: PageName | null = null