From e5d714dac109d651fdd4c0e63ab1a037b4190595 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8C=97=E6=9E=B3?= <7854742+wang_rumeng@user.noreply.gitee.com> Date: Mon, 22 Sep 2025 22:58:03 +0800 Subject: [PATCH] processing --- components/ui/h5-progress-toast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ui/h5-progress-toast.tsx b/components/ui/h5-progress-toast.tsx index ee9b6d4..dc53255 100644 --- a/components/ui/h5-progress-toast.tsx +++ b/components/ui/h5-progress-toast.tsx @@ -22,7 +22,7 @@ interface ProgressToastContextValue { const ProgressToastContext = createContext(null) export const H5ProgressToastProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { - const [state, setState] = useState({ open: false, title: 'AI生成中…', progress: 0 }) + const [state, setState] = useState({ open: false, title: 'processing...', progress: 0 }) const hide = useCallback(() => setState(prev => ({ ...prev, open: false })), [])