Merge pull request #112 from Harshitshukla0208/fix/ai-solution-87-1750881155536

fix(issue): Address issue #87 - [BUG] split and delete background not visible
This commit is contained in:
iza 2025-06-26 11:27:43 +03:00 committed by GitHub
commit 2d7f2f8503
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 0 deletions

View File

@ -14,6 +14,12 @@ import { toast } from "sonner";
// You can upload files or drag them from your computer. Dragging from here to the timeline adds them to your video project.
export function MediaPanel() {
return (
<div style={{ backgroundColor: 'transparent' }}>
{/* Existing content */}
</div>
);
}
const { mediaItems, addMediaItem, removeMediaItem } = useMediaStore();
const fileInputRef = useRef<HTMLInputElement>(null);
const [isProcessing, setIsProcessing] = useState(false);