diff --git a/src/components/image-converter.tsx b/src/components/image-converter.tsx index b9cd025..c9dce5e 100644 --- a/src/components/image-converter.tsx +++ b/src/components/image-converter.tsx @@ -20,7 +20,7 @@ import { SelectValue, } from "@/components/ui/select"; import { ScrollArea } from "@/components/ui/scroll-area"; -import { Upload, Download, X, Trash2 } from "lucide-react"; +import { Upload, Download, X, Trash2, Check } from "lucide-react"; import { toast } from "sonner"; import { cn } from "@/lib/utils"; import { Switch } from "@/components/ui/switch"; @@ -235,6 +235,10 @@ export function ImageConverter() { } }; + const handleApplySettings = () => { + toast.info("Settings updated and will be used for all downloads."); + }; + const hasImages = images.length > 0; return ( @@ -355,6 +359,14 @@ export function ImageConverter() { +