From ae203b5c7c1deff086740668ee488d0b5fc22dfd Mon Sep 17 00:00:00 2001 From: Max <48689808+Shironobako@users.noreply.github.com> Date: Fri, 22 Aug 2025 22:10:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(NewApiPage):=20=E4=BF=AE=E5=A4=8DnewApi?= =?UTF-8?q?=E5=9B=BE=E7=89=87=E7=BC=96=E8=BE=91=E8=AF=B7=E6=B1=82=E4=BD=93?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E6=90=BA=E5=B8=A6model=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#9403)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: hripleh Co-authored-by: hripleh --- src/renderer/src/pages/paintings/NewApiPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/src/pages/paintings/NewApiPage.tsx b/src/renderer/src/pages/paintings/NewApiPage.tsx index e1e1869c6a..621d6c65a3 100644 --- a/src/renderer/src/pages/paintings/NewApiPage.tsx +++ b/src/renderer/src/pages/paintings/NewApiPage.tsx @@ -286,6 +286,7 @@ const NewApiPage: FC<{ Options: string[] }> = ({ Options }) => { const formData = new FormData() formData.append('prompt', prompt) + formData.append('model', painting.model) if (painting.background && painting.background !== 'auto') { formData.append('background', painting.background) }