diff --git a/web/src/components/api-service/chat-overview-modal/api-content.tsx b/web/src/components/api-service/chat-overview-modal/api-content.tsx index 7daf42887..ebdc36581 100644 --- a/web/src/components/api-service/chat-overview-modal/api-content.tsx +++ b/web/src/components/api-service/chat-overview-modal/api-content.tsx @@ -1,3 +1,4 @@ +import { useIsDarkTheme } from '@/components/theme-provider'; import { useSetModalState, useTranslate } from '@/hooks/common-hooks'; import { LangfuseCard } from '@/pages/user-setting/setting-model/langfuse'; import apiDoc from '@parent/docs/references/http_api_reference.md'; @@ -28,6 +29,8 @@ const ApiContent = ({ const { handlePreview } = usePreviewChat(idKey); + const isDarkTheme = useIsDarkTheme(); + return (
@@ -47,7 +50,10 @@ const ApiContent = ({
- +
{apiKeyVisible && ( { - toast.success(msg, { - position: 'top-center', - closeButton: false, - ...duration, - }); + toast.success(msg, configuration); }, error: (msg: string) => { - toast.error(msg, { - position: 'top-center', - closeButton: false, - ...duration, - }); + toast.error(msg, configuration); }, warning: (msg: string) => { - toast.warning(msg, { - position: 'top-center', - closeButton: false, - ...duration, - }); + toast.warning(msg, configuration); }, info: (msg: string) => { - toast.info(msg, { - position: 'top-center', - closeButton: false, - ...duration, - }); + toast.info(msg, configuration); }, }; export default message;