From cc885c5d202b93e17578d45998602402fc0d542b Mon Sep 17 00:00:00 2001 From: Luke Harries Date: Sun, 16 Jun 2024 22:02:18 -0400 Subject: [PATCH] added download button --- examples/sound-effects/video-to-sfx/app/page.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/examples/sound-effects/video-to-sfx/app/page.tsx b/examples/sound-effects/video-to-sfx/app/page.tsx index b26eb5d..604c79a 100644 --- a/examples/sound-effects/video-to-sfx/app/page.tsx +++ b/examples/sound-effects/video-to-sfx/app/page.tsx @@ -23,7 +23,7 @@ const HoverOverlay = ({ className }: { className?: string }) => { }; import { convertVideoToSFX } from "@/lib/videoToSFX"; import { useMutation } from "@tanstack/react-query"; -import { DownloadIcon, LoaderCircle, LoaderPinwheel } from "lucide-react"; +import { DownloadIcon, LoaderCircle } from "lucide-react"; import { Button } from "@/components/ui/button"; import { mergeAndDownload } from "@/lib/mergeAndDownload"; @@ -289,7 +289,16 @@ const Home = observer(() => { onPause={() => orchestrator.stop()} player={player} active={orchestrator.activeIndex === index} +<<<<<<< HEAD onDownload={async () => { +======= + /> +