From 5dc01730c6155a6c3882d67068ff2ef8ca9b5062 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Sun, 18 Jan 2026 11:35:58 +0100 Subject: [PATCH] [dyad] Re-added 'Apply Settings' button - wrote 1 file(s) --- src/components/image-converter.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) 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() { +