diff --git a/src/pages/result/components/GeneratingComponent.tsx b/src/pages/result/components/GeneratingComponent.tsx index 474704a..32eec6a 100644 --- a/src/pages/result/components/GeneratingComponent.tsx +++ b/src/pages/result/components/GeneratingComponent.tsx @@ -22,7 +22,7 @@ const GeneratingComponent: React.FC = ({ task }) => { // Determine estimated time based on task type const isVideo = task.taskType === 'video' || task.outputType === 'video' || task.type === 'video'; - const estimatedTime = isVideo ? 2.5 : 1; // Video 2.5 minutes, image 1 minute + const estimatedTime = isVideo ? 15 : 15; // Video 2.5 minutes, image 1 minute // Calculate progress percentage, maximum 95% const calculatedProgress = Math.min((elapsedMinutes / estimatedTime) * 100, 95);