new Approval Updates
Deploy / deploy (push) Failing after 3m34s

This commit is contained in:
twotalesanimation
2026-06-11 12:30:28 +02:00
parent b9610454d9
commit 3f0c5d1dbe
19 changed files with 2015 additions and 70 deletions
+16 -10
View File
@@ -12,6 +12,8 @@ import {
AlertCircle,
Film,
MessageSquare,
ShieldCheck,
Eye,
} from "lucide-react";
import type { ShotWithDetails } from "@/types";
@@ -22,19 +24,23 @@ interface ShotQueueProps {
}
const STATUS_STYLES: Record<string, string> = {
WAITING: "text-zinc-400",
IN_PROGRESS: "text-blue-400",
IN_REVIEW: "text-purple-400",
REVISIONS: "text-orange-400",
COMPLETE: "text-emerald-400",
WAITING: "text-zinc-400",
IN_PROGRESS: "text-blue-400",
INTERNAL_REVIEW: "text-purple-400",
READY_FOR_CLIENT: "text-sky-400",
CLIENT_REVIEW: "text-indigo-400",
REVISIONS: "text-orange-400",
COMPLETE: "text-emerald-400",
};
const STATUS_ICONS: Record<string, React.ElementType> = {
WAITING: Clock,
IN_PROGRESS: Film,
IN_REVIEW: AlertCircle,
REVISIONS: AlertCircle,
COMPLETE: CheckCircle2,
WAITING: Clock,
IN_PROGRESS: Film,
INTERNAL_REVIEW: AlertCircle,
READY_FOR_CLIENT: ShieldCheck,
CLIENT_REVIEW: Eye,
REVISIONS: AlertCircle,
COMPLETE: CheckCircle2,
};
const PRIORITY_DOT: Record<string, string> = {