From 7bcebdb1024c92cc9756e9d4e545f200b1e31e40 Mon Sep 17 00:00:00 2001 From: webadderall <131426131+webadderall@users.noreply.github.com> Date: Sun, 20 Sep 2026 20:29:05 +1000 Subject: [PATCH] chore(cloud): point uploads at the local development server --- src/components/video-editor/cloud/CloudShareButton.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/video-editor/cloud/CloudShareButton.tsx b/src/components/video-editor/cloud/CloudShareButton.tsx index 605c3e2a..142c5937 100644 --- a/src/components/video-editor/cloud/CloudShareButton.tsx +++ b/src/components/video-editor/cloud/CloudShareButton.tsx @@ -12,9 +12,7 @@ import { import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; -const DEFAULT_CLOUD_ENDPOINT = import.meta.env.DEV - ? "http://localhost:8787/api/upload" - : "https://videos.recordly.dev/api/upload"; +const DEFAULT_CLOUD_ENDPOINT = "http://localhost:8787/api/upload"; type Props = { filePath?: string;