chore: pass rawOther to ProviderEdit

This commit is contained in:
KimiSwitch Dev
2026-07-09 01:02:59 +08:00
parent 0cd70b9dbc
commit 2b25c62ffc
+4
View File
@@ -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)}