CSV shot implementation
Deploy / deploy (push) Failing after 46s

This commit is contained in:
twotalesanimation
2026-06-12 15:06:50 +02:00
parent 450f969007
commit 4da80d29a9
8 changed files with 637 additions and 4 deletions
@@ -1,6 +1,7 @@
"use client";
import { useState, useTransition, useEffect } from "react";
import Link from "next/link";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { ShotCard } from "@/components/shots/ShotCard";
@@ -227,6 +228,11 @@ export function ProjectTabsClient({
<Button variant="outline" size="sm" className="gap-2 h-8" onClick={() => setShowImportShots(true)}>
<FileUp className="h-3.5 w-3.5" /> Import CSV
</Button>
<Button variant="outline" size="sm" className="gap-2 h-8" asChild>
<Link href={`/projects/${projectId}/import-edl`}>
<FileUp className="h-3.5 w-3.5" /> VFX Pull
</Link>
</Button>
<Button size="sm" className="gap-2 h-8" onClick={() => setShowNewShot(true)}>
<Plus className="h-3.5 w-3.5" /> New Shot
</Button>