From 5e146d51956eb65c19672d98c03892dea84504f3 Mon Sep 17 00:00:00 2001 From: tjtanjin Date: Sun, 6 Oct 2024 03:10:48 +0800 Subject: [PATCH] fix: Add missing bot id hook export --- src/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 823829a6..bdca2ee1 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -36,6 +36,7 @@ import { RcbTextAreaChangeValueEvent } from "./types/events/RcbTextAreaChangeVal // hook imports import { useAudio } from "./hooks/useAudio"; +import { useBotId } from "./hooks/useBotId"; import { useChatWindow } from "./hooks/useChatWindow"; import { useFirstInteraction } from "./hooks/useFirstInteraction"; import { useFlow } from "./hooks/useFlow"; @@ -98,6 +99,7 @@ export { // hook exports export { useAudio, + useBotId, useChatWindow, useFirstInteraction, useFlow,