Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/components/VideoEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -437,9 +437,10 @@ export default function VideoEditor() {
id="export-button"
type="button"
onClick={handleExport}
disabled={!file || isProcessing}
aria-label='Export video'
aria-disabled={!file || isProcessing ? "true" : undefined}
disabled={!file || isProcessing}
aria-label='Export video'
aria-disabled={!file || isProcessing ? "true" : undefined}
title={!file ? "Upload a video to enable export" : undefined}
className={cn(
"w-full flex items-center justify-center gap-3 py-5 min-h-[44px] rounded-xl",
"font-display text-2xl tracking-widest transition-all duration-200",
Expand Down
Loading