Merge branch 'OpenCut-app:main' into main

This commit is contained in:
Sinan
2025-06-26 15:16:53 +05:30
committed by GitHub
2 changed files with 1 additions and 7 deletions

View File

@ -1,7 +1,7 @@
"use client";
import { useRouter } from "next/navigation";
import { useAuth } from '@/hooks/useAuth';
import { signIn, signUp } from "@opencut/auth/client";
import { Button } from "@/components/ui/button";
import {
Card,

View File

@ -14,12 +14,6 @@ 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);