From 3fcf02866ac21f5fb7b3fffdcb0725567b782fdf Mon Sep 17 00:00:00 2001 From: DrSmoothl <1787882683@qq.com> Date: Tue, 17 Feb 2026 17:41:41 +0800 Subject: [PATCH] feat(dashboard): export ChatSectionHook in hooks index - Add ChatSectionHook export to hooks/index.ts - Complete Task 10 (Wave 3) - ChatSectionHook now available for import and registration --- dashboard/src/routes/config/bot/hooks/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/src/routes/config/bot/hooks/index.ts b/dashboard/src/routes/config/bot/hooks/index.ts index bfd91b16..40b831c2 100644 --- a/dashboard/src/routes/config/bot/hooks/index.ts +++ b/dashboard/src/routes/config/bot/hooks/index.ts @@ -4,3 +4,4 @@ export { useAutoSave, useConfigAutoSave } from './useAutoSave' export type { UseAutoSaveOptions, UseAutoSaveReturn, AutoSaveState } from './useAutoSave' +export { ChatSectionHook } from './ChatSectionHook'