From 2aa76655bbceed2ced651323fb1ec1238e57aacf Mon Sep 17 00:00:00 2001 From: twotalesanimation <80506065+twotalesanimation@users.noreply.github.com> Date: Thu, 21 May 2026 20:16:07 +0200 Subject: [PATCH] fixed upload error --- actions/shots.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/shots.ts b/actions/shots.ts index c8ebb24..ef86f21 100644 --- a/actions/shots.ts +++ b/actions/shots.ts @@ -397,7 +397,7 @@ export async function getShotsByProject(projectId: string) { const addFootagePlateSchema = z.object({ shotId: z.string().min(1), - fileUrl: z.string().url(), + fileUrl: z.string().min(1), fileKey: z.string().default(""), fileName: z.string().default(""), fileSize: z.number().int().positive().optional(),