From 2b25c62ffc2b0fbe9e0c783cbbbf8c2da4591e42 Mon Sep 17 00:00:00 2001 From: KimiSwitch Dev Date: Thu, 9 Jul 2026 01:02:59 +0800 Subject: [PATCH] chore: pass rawOther to ProviderEdit --- src/App.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/App.tsx b/src/App.tsx index 3b62231..f3963f0 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -348,6 +348,10 @@ export default function App() { (m) => m.provider === currentProvider.name )} defaultModel={config.default_model} + rawOther={config.raw_other} + onRawOtherChange={(nextRawOther) => + updateConfig((cfg) => ({ ...cfg, raw_other: nextRawOther })) + } onBack={() => setView("list")} onChange={handleUpdateProvider} onDelete={() => handleDeleteProvider(currentProvider.name)}