diff --git a/app/layout.tsx b/app/layout.tsx
index 3b449f8..db5e91e 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -43,7 +43,6 @@ export default function RootLayout({
MovieFlow - AI Movie Studio
-
diff --git a/components/ChatInputBox/ChatInputBox.tsx b/components/ChatInputBox/ChatInputBox.tsx
index 04e9b39..5fa4d55 100644
--- a/components/ChatInputBox/ChatInputBox.tsx
+++ b/components/ChatInputBox/ChatInputBox.tsx
@@ -73,7 +73,7 @@ const VideoDurationOptions = [
{ value: "8s", label: "8s" },
{ value: "1min", label: "1min" },
{ value: "2min", label: "2min" },
- { value: "unlimited", label: "unlimited" },
+ { value: "unlimited", label: "auto" },
];
// aspect ratio options moved to reusable component
@@ -464,7 +464,7 @@ export function ChatInputBox({ noData }: { noData: boolean }) {
className={`flex items-center gap-1 text-white/80 transition-all duration-200 ${isMobile ? 'px-1' : 'px-2'} py-2`}
>
- {isMobile ? (configOptions.videoDuration === 'unlimited' ? '∞' : configOptions.videoDuration.replace('min', 'm')) : configOptions.videoDuration}
+ {configOptions.videoDuration === 'unlimited' ? 'auto' : (isMobile ? configOptions.videoDuration.replace('min', 'm') : configOptions.videoDuration)}
diff --git a/components/pages/work-flow.tsx b/components/pages/work-flow.tsx
index 8f66dc7..1612c97 100644
--- a/components/pages/work-flow.tsx
+++ b/components/pages/work-flow.tsx
@@ -471,7 +471,6 @@ Please process this video editing request.`;
alt="final"
className="w-full h-auto object-cover"
/>
- Final
)}
diff --git a/components/pages/work-flow/H5MediaViewer.tsx b/components/pages/work-flow/H5MediaViewer.tsx
index 42e4655..51da617 100644
--- a/components/pages/work-flow/H5MediaViewer.tsx
+++ b/components/pages/work-flow/H5MediaViewer.tsx
@@ -417,7 +417,6 @@ export function H5MediaViewer({
aria-label="Select final video"
>
- Final
)}